如何编写嵌套的JSP标签?
我写了一个jSP标签,像这样
<m:OneToOne id="12345" concept="Book">
<m:Display>
<m:Attribute name = "Book.BookId" />
<m:Attribute name = "Book.Description" />
</m:Display>
</m:OneToOne>
它的标签tld是:
<taglib xmlns="http://java.sun.com/JSP/TagLibraryDescriptor">
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>OneToOneTag</short-name>
<tag>
<name>OneToOne</name>
<tag-class>com.OneToOneTag</tag-class>
<body-content>tagdependent</body-content>
<attribute>
<name>id</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>concept</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
<tag>
<name>Display</name>
<tag-class>com.DisplayTag</tag-class>
<body-content>tagdependent</body-content>
</tag>
<tag>
<name>Attribute</name>
<tag-class>com.AttributeTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
现在,这段代码只会运行OneToOne标签,忽略内部标签。我意识到这是因为身体内容的价值。但我不知道如何解决它?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论