Questions tagged «tagfile»

5
使用JSP include指令包含文件,使用JSP include操作和使用JSP标记文件之间有什么区别?
似乎有两种使用JSP进行模板制作的方法。包括具有以下语句之一的文件 <%@ include file="foo.html" %> <jsp:include page="foo.html" /> 或使用JSP标记文件 // Save this as mytag.tag <%@ tag description="Description" pageEncoding="UTF-8"%> <html> <head> </head> <body> <jsp:doBody/> </body> </html> 并在另一个JSP页面中使用 <%@ taglib prefix="t" tagdir="/WEB-INF/tags" %> <t:mytag> <h1>Hello World</h1> </t:mytag> 那么我应该使用哪种方法呢?现在是不推荐使用的一种,还是它们既有效又涵盖了不同的用例? 编辑 使用此标记文件与使用包含文件不一样吗? // Save this as product.tag <%@ tag description="Product templage" pageEncoding="UTF-8"%> <%@ tag …
155 java  jsp  include  jsp-tags  tagfile 

1
何时使用<ui:include>,标记文件,复合组件和/或自定义组件?
我最近开始将JSF 2.0与Facelets结合使用,并且对新的复合组件感到困惑,因为他们知道&lt;ui:include&gt;Facelets 1.x提供的现有模板技术和其他模板技术。 这些方法之间有什么区别?在功能上,它们似乎提供了几乎相同的功能:&lt;ui:param&gt;vs &lt;cc:attribute&gt;,&lt;ui:insert&gt;+ &lt;ui:define&gt;vs标签文件,现有模板的重用。如果是复合组件,除了语法和清晰的接口规范外,还有什么?性能会有所不同吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.