Questions tagged «jsp-tags»

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 

4
JSTL if标签是否包含相等的字符串
我的JSP页面上的一个对象有一个变量: <%= ansokanInfo.getPSystem() %> 变量的值是NAT,它是正确的,我想对此值应用某些页面元素。如何使用标签来了解情况?我尝试了类似的东西 <c:if test = "${ansokanInfo.getPSystem() == 'NAT'}"> process </c:if> 但是上面没有显示任何内容。我该怎么办?或者我也可以使用scriptlet <% if (ansokanInfo.getPSystem().equals("NAT"){ %> process <% } %> 感谢您的任何回答或评论。
90 java  jsp  websphere  jstl  jsp-tags 
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.