如何以编程方式从Struts2标记中获取嵌套组件?

时间:2009-07-15 13:21:50

标签: struts2 tags nested

如何从struts2标记中获取所有嵌套标记元素? 例如表单标记中的文本和复选框标记?:

<s:form>
 <s:text .../>
 <s:checkbox .../
<s:form>

我知道该表单是strust-tags.tld中定义的标记,它扩展了org.apache.struts2.views.jsp.ui.FormTag, 但是如何获得嵌套标签呢?

1 个答案:

答案 0 :(得分:0)

使用org.apache.struts2.components.Component类中的getComponentStack()方法。