Centos7 Jetty7 项目部署 java.io.FileNotFoundException

 出现java.io.FileNotFoundException: /usr/jetty/jetty7.4.5/webapps/test.war

  1. 由于 在start.ini 文件中  

    etc/jetty-deploy.xml

    etc/jetty-webapps.xml

        etc/jetty-contexts.xml

        etc/jetty-testrealm.xml

         etc/jetty-plus.xml

     加载了etc/jetty-contexts.xml 文件

   2. jetty-contexts.xml

<?xml version="1.0"?>

<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">


<!-- =============================================================== -->

<!-- Add a ContextProvider to the deployment manager                 -->

<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

<!-- This scans the webapps directory for war files and directories  -->

<!-- to deploy.                                                      -->

<!-- This configuration must be used with jetty-deploy.xml, which    -->

<!-- creates the deployment manager instance                         -->

<!-- =============================================================== -->

<Configure id="Server" class="org.eclipse.jetty.server.Server">

        <Ref id="DeploymentManager">

          <Call name="addAppProvider">

            <Arg>

              <New class="org.eclipse.jetty.deploy.providers.ContextProvider">

                <Set name="monitoredDirName"><Property name="jetty.home" default="." />/contexts</Set>

                <Set name="scanInterval">1</Set>

              </New>

            </Arg>

          </Call>

        </Ref>

</Configure>

启动日志记录

2015-10-10 01:09:50.222:INFO::Deployment monitor /usr/jetty/jetty7.4.5/contexts at interval 1

2015-10-10 01:09:50.223:INFO::Deployable added: /usr/jetty/jetty7.4.5/contexts/test.xml

 文件里 指定加载 contexts 目录下文件Centos7 Jetty7 项目部署 java.io.FileNotFoundException_第1张图片

  test.xml 里面包含test.war 的信息

 Centos7 Jetty7 项目部署 java.io.FileNotFoundException_第2张图片

  删掉即可


你可能感兴趣的:(Centos7 Jetty7 项目部署 java.io.FileNotFoundException)