001

阅读更多

<%@ page contentType="text/html; charset="GBK" language="java" ;errorPage=""%>

       

                 FIRST PAGE

       

         

                 

Welcome to the first page!

         

 

 

项目部署到tomcat中,打开浏览器,输入http://localhost:8080/webDemo/a.jsp,结果出现org.apache.jasper.JasperException: /a.jsp (line: 1, column: 2) Unterminated <%@ page tag

 

【导致原因:有page指令中的";"引起】

【解决方案:去掉分号】

改完之后:

<%@ page contentType="text/html ;charset=GBK" language="java" errorPage="" %>

FIRST PAGE

Welcome to the first JSP page!

 

你可能感兴趣的:(JSP)