任何人都知道为什么我的xhtml页面无法使用其命名bean?
我在浏览器中获得了Welcome #{indexBean.userName}
。 IndexBean是@ Name,@ SessionScoped并实现Serializable。
的index.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<h:outputStylesheet library="css" name="default.css"/>
<title>Admin Panel</title>
</h:head>
<h:body>
<h:form>
<h2>Welcome #{indexBean.userName}</h2>
</h:form>
</h:body>
</html>
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID"
version="3.0">
<display-name>WebAdmin</display-name>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>FacesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>/WEB-INF/faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
豆
import java.io.Serializable;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
@Named
@SessionScoped
public class IndexBean implements Serializable {
private static final long serialVersionUID = 1L;
MyFaces的
INFO: Reading config : jar:file:/C:/tomee16/lib/openwebbeans-el22-1.2.1.jar!/META-INF/faces-config.xml
2013年12月15日下午10:27:54 org.apache.myfaces.config.DefaultFacesConfigurationProvider getClassloaderFacesConfig 信息:读取配置:jar:file:/ C:/tomee16/lib/openwebbeans-jsf-1.2.1.jar!/META-INF/faces-config.xml 2013年12月15日下午10:27:54 org.apache.myfaces.config.LogMetaInfUtils logArtifact INFO:Artifact'myfaces-api'在路径'file:/ C:/tomee16/lib/myfaces-api-2.1.13.jar'的版本'2.1.13'中找到 2013年12月15日下午10:27:54 org.apache.myfaces.config.LogMetaInfUtils logArtifact INFO:Artifact'myfaces-impl'在路径'file:/ C:/tomee16/lib/myfaces-impl-2.1.13.jar'的版本'2.1.13'中找到
答案 0 :(得分:3)
如果您通过FacesServlet访问XHTML文件,则它们仅被视为JSF视图。您的FacesServlet
已映射到:
<url-pattern>/faces/*</url-pattern>
因此,对于文件foo/bar.xhtml
,您必须通过网址http://host/app/faces/foo/bar.xhtml
访问该文件。
考虑将映射更改为:
<url-pattern>*.xhtml</url-pattern>
假设应用程序中的所有XHTML文件都是JSF视图。
答案 1 :(得分:0)
首先检查包的注释:javax.inject.Named和javax.enterprise.context.SessionScoped。第二,如果您使用的是JEE 6,并且因为您正在使用CDI,则需要激活CDI添加文件WEB-INF / beans.xml,此文件可以为空。
答案 2 :(得分:0)
可能你在没有FacesServlet处理它的情况下调用你的页面。
您应该在页面名称url
之前加入/ faces /localhost:8080/WebAdmin/faces/index.xhtml