Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
314 views
in Technique[技术] by (71.8m points)

java - How to assign <s:property value="a"> value to a jsp variable

Can anybody tell how to assign a value coming from "<s:property value="a">" into jsp variable ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use the s:set tag for this.

For example this will call getA() from your action and put the value into "avalue", don't use name instead of var

<s:set var="avalue" value="a" />

And then you can reference it like so on the JSP:

<b>Print value defined in set tag :</b> <s:property value="#avalue" /> <br/>

Which will print out the value.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...