我有一个带有一些标准JSF页面和支持bean的JSF webapp
我正在尝试使用urlPatterns
注释的@WebServlet
参数来从非根路径获取我的应用页面。例如:
http://localhost/<appName>/<myPath>/index.xhtml
其中myPath = / web,如下面的代码所示。
这似乎不起作用。应用程序仅响应对以下内容的请求:
http://localhost/<appName>/index.xhtml
该应用程序部署在Tomcat 7.0中。 以及以下JSF依赖项:
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.1.16</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1.16</version>
</dependency>
有什么想法吗?
import javax.faces.webapp.FacesServlet;
@WebServlet(urlPatterns = "/web",
initParams = { @WebInitParam(name = "javax.faces.PROJECT_STAGE",
value = "Development") })
public class AppServlet implements Servlet {
FacesServlet servlet = new FacesServlet();
@Override
public void destroy() {
servlet.destroy();
}
@Override
public ServletConfig getServletConfig() {
return servlet.getServletConfig();
}
@Override
public String getServletInfo() {
return servlet.getServletInfo();
}
@Override
public void init(ServletConfig servletConfig) throws ServletException {
servlet.init(servletConfig);
}
@Override
public void service(ServletRequest req, ServletResponse resp)
throws ServletException, IOException {
servlet.service(req, resp);
}
}
答案 0 :(得分:4)
/web
的网址格式仅与http://localhost/<appName>/web
文件夹匹配,而不是像您期望的那样匹配http://localhost/<appName>/web/index.xhtml
等子文件夹和文件。为此,您应使用/web/*
的网址格式。
@WebServlet("/web/*")
无关,这不会与JSF一起工作,因为它不会以这种方式调用自己的FacesServlet
。也许你真的需要一个servlet filter?此外,该Web init参数创建了<servlet><init-param>
而不是JSF通常需要的<context-param>
。以防你不知道。