【问题标题】:FAIL - Application at context path /CONTROL could not be startedFAIL - 无法启动上下文路径 /CONTROL 处的应用程序
【发布时间】:2013-10-29 15:30:43
【问题描述】:

当我尝试在 tomcat 7 上部署我的 WAR 文件 Web 应用程序时遇到问题。它昨天还在工作,但我认为 web.xml 中存在问题。我尝试按下开始按钮,但收到此消息:

FAIL - 无法启动上下文路径 /CONTROL 处的应用程序

谁能帮帮我?

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"
version="3.0">

<display-name>Archetype Created Web Application</display-name>
<filter>
    <filter-name>LoginFilter</filter-name>
    <filter-class>org.primefaces.examples.view.LoginFilter</filter-class>
</filter>

<!-- Set the login filter to secure all the pages in the /secured/ * path 
    of the application -->
<filter-mapping>
    <filter-name>LoginFilter</filter-name>
    <url-pattern>/secured/ *</url-pattern>
</filter-mapping>

<!-- By default go to secured welcome page -->
<welcome-file-list>
    <welcome-file>secured/welcome.xhtml</welcome-file>
</welcome-file-list>

<filter>
    <filter-name>urlRewriteFilter</filter-name>
    <filter-class>org.primefaces.examples.view.UrlRewriteFilter
    </filter-class>
</filter>

<filter-mapping>
    <filter-name>urlRewriteFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
</filter-mapping>


<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
</context-param>

<welcome-file-list>
    <welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>

<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>/faces/ *</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

<context-param>
    <description>State saving method: 'client' or 'server' (=default). See
        JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
</context-param>

<context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext
    </param-name>
    <param-value>resources.application</param-value>
</context-param>

<listener>
    <listener-class>com.sun.faces.config.ConfigureListener
    </listener-class>
</listener>

<context-param>
    <param-name>primefaces.THEME</param-name>
    <param-value>custom-theme</param-value>
</context-param>
</web-app>

日志文件:

http://sams-app.com/catalina.out

【问题讨论】:

  • 我如何从服务器获取 Stacktrace .. 注意我使用的是真正的虚拟主机
  • 向您的网络托管服务提供商索取。
  • 我是虚拟主机。
  • 然后找一个日志文件,可以在部署应用时参考错误的stacktrace。
  • 你能给我日志文件的路径吗,因为我不知道如何找到它。谢谢

标签: java jsf tomcat


【解决方案1】:

我看到您的 web.xml 的某些部分似乎已被注释。它显示为灰色。您发布的内容在您的工作环境中是否也相同。下面是灰色的部分。


</servlet-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF   
Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>custom-theme</param-value>
 </context-param>
  <filter>
<filter-name>urlRewriteFilter</filter-name>
<filter-class>org.primefaces.examples.view.UrlRewriteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>urlRewriteFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
 </filter-mapping>

<filter>
<filter-name>LoginFilter</filter-name>
<filter-class>org.primefaces.examples.view.LoginFilter</filter-class>
</filter>
    <!-- Set the login filter to secure all the pages in the /secured/* path of 
the     application  -->
<filter-mapping>
<filter-name>LoginFilter</filter-name>
<url-pattern>/secured/*</url-pattern>
 </filter-mapping>

 <!-- By default go to secured welcome page -->
 <welcome-file-list>
<welcome-file>secured/welcome.xhtml</welcome-file>
</welcome-file-list>

【讨论】:

  • 这只是格式。 web.xml 中唯一注释的内容是 cmets。我也为这个 XML 代码添加了格式。
  • 我已经添加了日志文件
猜你喜欢
  • 2015-01-03
  • 2017-05-18
  • 2014-08-12
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-09-22
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多