我正在尝试创建JSF 2页面。当我使用facelets模板创建页面时,我得到的消息是“尚未为Facelets配置项目。 您需要将Facelets运行时添加到项目的类路径中“。 我创建了名为Test1.xhtml的文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11 /DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com /jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com /jsf/html">
<h:head>
<title>Test1</title>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=UTF-8" />
<meta name="GENERATOR"
content="Rational® Application Developer for WebSphere® Software" />
</h:head>
<h:body>
Test
</h:body>
</html>
当我运行它时,我在资源管理器中看到相同的文件内容,而不是Test。 也没有为它创建页面代码。
答案 0 :(得分:1)
在页面上删除第一个组件时,会创建页面代码和所需的web.xml / facesconfig stuf。 检查一下:http://www-01.ibm.com/support/docview.wss?uid=swg21503733