报错:org.apache.jasper.JasperException: /jsp/head.jsp (line: 1, column: 2) Page directive: illegal to

  • Post author:
  • Post category:其他


上面报错提示的是

org.apache.jasper.JasperException


: /jsp/head.jsp (line: 1, column: 2) Page directive: illegal to have multiple occurrences of contentType with different values (old: text/html; charset=UTF-8, new: text/html; charset=utf-8)


即:在/ jsp /head.jsp中(行:1,列:2)页指令:非法有多个不同值的内容类型(旧的:文本/ html;charset = utf – 8,新:text / html;charset = utf – 8),可查看头部信息是否过期,如过期错误的写法:


应该改为:


同时如果头部写法无错误,仍然报

org.apache.jasper.JasperException

错误则考虑是否

<%@


taglib


prefix=


“c”


uri=


“http://java.sun.com/jsp/jstl/core”


%>

书写有误,可能没有写等于号(=),或者标点符号少写或有误。



版权声明:本文为HJBZF原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。