JSP not rendering properly in Tomcat

后端 未结 4 2014
故里飘歌
故里飘歌 2020-12-21 11:47

I have a JSP page running in Tomcat that is not rendering properly. Here is what helloworld.jsp looks like:

<%@ page contentType=\"text/html;charset=UTF-         


        
4条回答
  •  别那么骄傲
    2020-12-21 12:04

    The java scriplet <%= new java.util.Date() % is also not closed properly (<%= new java.util.Date() %>) plus like gigadot stated, the <%-- JSP Comment --% is not closed properly <%-- JSP Comment --%>.

    Regards,

提交回复
热议问题