我正在使用 Netbeans 7.3.1 开发一个 JSF Web 应用程序,在 Apache TomEE 1.5.2 上运行,它捆绑了 MyFaces 2.1.10,我还使用 PrimeFaces 3.5 来处理一些花哨的标签。
我一定是在某个地方弄坏了一些东西,因为直到昨天一切都还好,然后今天当我尝试部署我的应用程序时,它<h:outputText />
在正确渲染所有 Primefaces 标记时无法渲染。<h:form>
标签也被渲染。
更新:
也<h:inputText/>
正确呈现,但该value
属性在那里被忽略,如<h:outputText/>
.
此外,直到昨天我的托管 bean 在没有implements Serializable
声明的情况下都能正常工作,而今天如果我不添加它就会出现异常。
我检查了这些响应,但似乎没有一个适用于我的情况:JSF 标签未呈现,JSF 标签未呈现为 HTML,JSF 标签未呈现 JSF 标签未呈现 - FacesServlet 可能不起作用?. 特别是,在这些情况下,问题似乎是页面根本没有被解析,但在我的例子中,页面被部分解析了。
我在我的应用程序中准备了一个小测试用例来展示这种行为。这是我的faces-config.xml
:
<?xml version="1.0"?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0">
</faces-config>
我的web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<description>Pannello di amministrazione di FiatLux</description>
<display-name>Pannello Amministrazione FiatLux</display-name>
<distributable/>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<servlet>
<description>Default servlet</description>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/resources/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.jsf</welcome-file>
</welcome-file-list>
</web-app>
这是示例页面example.xhtml
:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<h:form id="form">
<h:outputText value="Example value text" />
<h:outputText>Text between opening and closing tags</h:outputText>
<p:pickList id="outPickList"
value="#{exampleBean.data}"
var="obj"
itemLabel="#{obj}"
itemValue="#{obj}">
</p:pickList>
<p:commandButton ajax="false" action="#{exampleBean.updateAction}" value="Submit"/>
</h:form>
</h:body>
</html>
这是支持 bean ExampleBean.java
,:
package com.ipssconsulting.fl.admininterface.presentation;
import java.io.Serializable;
import java.util.Arrays;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import org.apache.log4j.Logger;
import org.primefaces.model.DualListModel;
@SessionScoped
@ManagedBean(name = "exampleBean")
public class ExampleBean implements Serializable {
private static final long serialVersionUID = 89900876464743497L;
private static final Logger logger = Logger.getLogger(ExampleBean.class);
private DualListModel<String> data;
@PostConstruct
public void initialize() {
String[] initData = {
"Primo", "Secondo", "Terzo"
};
data = new DualListModel();
data.setSource(Arrays.asList(initData));
}
/**
* @return the data
*/
public DualListModel<String> getData() {
return data;
}
public void updateAction() {
logger.info("Clicked");
}
/**
* @param data the data to set
*/
public void setData(DualListModel<String> data) {
this.data = data;
}
}
我准备了一个带有结果的屏幕截图。
<h:outputText>
PrimeFaces 选择列表正常工作, [...]之间的文本</h:outputText>
被渲染,我相信因为标签被简单地删除,但使用value
属性的标签不是。我的应用程序的所有其他页面都发生了类似的行为。
我做了什么会导致这种行为?可能是什么原因?