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-
I think there are problem with your jsp comment.
It should look like below. Are you not using IDE to develop your jsp? Your IDE should tell you when you have syntax error.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="cms-taglib" prefix="cms" %>
${content.title}
${content.title}
Hello Magnolia World !
Current time: <%= new java.util.Date() %>
<%-- JSP Comment --%>