我在SAP NWDS中开发了一个非常简单的JSF应用程序;用于JSF的SAP组件库";。
我运行JSF应用程序(下面的代码),得到一个弹出警报,其中包含以下文本:
致命的应用程序错误:不支持标准呈现文档类型。联系管理员
我不知道";标准呈现文档类型";是和在哪里我可以配置它。
有什么想法或暗示吗?
问候Kay
JSF应用程序:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="f" uri="http://java.sap.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sap.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<f:view>
<html>
<head>
<title>Hallo ?</title>
</head>
<body>
<h:form>
<h:messages/>
<hr>
<h:panelGrid border="0" columns="2">
<h:outputText value="First Name" style="color: #808080; font-style: normal; font-size: 12px; font-family: Verdana, Arial, Sans-Serif; font-weight: bold"></h:outputText>
<h:inputText value="#{person.name}"></h:inputText>
</h:panelGrid>
<h:commandButton value="Submit" action="submit"></h:commandButton>
</h:form>
</body>
</html>
</f:view>
问题是行
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
这个LSF框架似乎在<f:view>
-元素中给出了DOCTYPE,错误与第二个DOCTYPE 有关