Struts:在JSP页面中多次执行

时间:2013-02-17 09:02:20

标签: java eclipse jsp jstl struts

我试图在struts中运行以下代码并将错误视为:

<%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE
        HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   
        "http://www.w3.org/TR/html4/loose.dtd">         
<html> 
<jsp:include page="/Shop_login.jsp"></jsp:include>
<head>Welcome To My shop application </head> 
<body> 
  User Name:<html:input text="first_name"> </html:input>
  Password:<html:password text="password"> </html:password>  
</body>
</html>

输出为:

Welcome To My shop application User Name: Password: Welcome To My shop application User Name: Password: Welcome To My shop application User Name: Password: Welcome To My shop application User Name: Password:  ...

1 个答案:

答案 0 :(得分:0)

如果使用JSTL

,也可以在JSP中使用这些taglib
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
<%@ taglib prefix="bean" uri="http://struts.apache.org/tags-bean" %>
<%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic" %>

在文件中只是这些代码片段

然后使用

<%@ include file="/tags/taglibs.jsp" %>

在页面顶部,您可以使用定义下方的标签。 您可以使用JSTL包含的其他JSP片段,例如

<c:import url="/pages/page.jsp"/> 

或使用JSP指令

<jsp:include page="/pages/page.jsp"/>

并且不要在其自身内部使用相同的片段,它可能会导致从代码编译的servlet中的递归调用。