我试图在我的JavaBean中设置一些内容。我正在做以下事情:
<x:set var="asdf123" select="$record/uuid"/>
<c:out value="${asdf123}"/> <---- this displays []
<x:out select="$record/uuid" /> <---- this displays the content from my XML
<x:out select="$asdf123" /> <---- this displays the content from my XML
<jsp:useBean id="matchBean" class="my.project.beans.MatchBean" />
<jsp:setProperty name="matchBean" property="uuid" value="${asdf123}"/> <--- this isn't working
我已将内容放在表单中隐藏的输入字段中。这适用于
<input type="radio" name="uuid" value="<x:out select="$record/uuid" />" checked="checked" />
这个有效。我为我的Bean尝试了类似的东西,但到目前为止没有任何结果。
谢谢
马库斯
答案 0 :(得分:0)
这个做了诀窍:
<x:set var="asdf123" select="string($record/uuid/text())"/>
<强>参考强>