小编典典

错误-多次出现具有不同值的'contentType'是非法的

jsp

我在Glassfish4上运行的Eclipse中有一个动态Web项目。在项目中,下面提供了一个index.jsp文件。当我在服务器上运行此jsp时,出现错误:

org.apache.jasper.JasperException: /index.jsp(1,1) PWC5988: Page directive: illegal to have multiple occurrences of 'contentType' with different values (old: text/html, new: text/html; charset=ISO-8859-1)

这是带有说明的内部服务器错误-服务器遇到内部错误,阻止其满足此请求。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="css/designs.css">
</head>
<body>

Content

</body>
</html>

我查看了google和其他网站,但没有找到有效的解决方案。服务器日志堆栈跟踪也无济于事。请帮我。


阅读 1361

收藏
2020-06-08

共1个答案

小编典典

问题是您两次声明了“ Content-Type”(作为“ text / html”)。这违反规范,并导致您的网站引发错误。

您只是不能同时使用两个标签。HTTP协议还提供了Content-Type编码。因此,除非您知道您的网站如何提供这些页面,否则请不要与Content-
Type混淆。

2020-06-08