使用context.xml配置WebApp对于使用Tomcat

时间:2012-12-04 14:01:13

标签: java tomcat maven web-applications

我正在使用Maven 3来构建我的项目。我有一个Web应用程序,我想定义自定义根。根据Tomcat 6文档,它说:

The locations for Context Descriptors are: 
1.  $CATALINA_BASE/conf/[enginename]/[hostname]/context.xml 
2.  $CATALINA_BASE/webapps/[webappname]/META-INF/context.xml

Files in (1) are named [webappname].xml but files in (2) are named context.xml. 
If a Context Descriptor is not provided for a Context, Tomcat configures the Context using default values. 

我想使用我定义的自定义根目录。如何实现这一点,因为在定义自定义context.xml文件时,Tomcat中未显示该路径。根据以上所述,它提到如果没有为Context提供Context Descriptor,Tomcat使用默认值配置Context。我已经在context.xml中定义了我的上下文描述符:

<?xml version="1.0" encoding="UTF-8"?>
<Context path="/data1"/>

当我部署deploy.war时,进入Tomcat我无法访问/ data1不起作用。但是,/ data有效。部署war文件时,它具有位于context.xml的META-INF。

我的POM文件:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
 <groupId>com.data</groupId>
 <artifactId>Java-WebApp</artifactId>
 <version>0.0.1-SNAPSHOT</version>
 <packaging>war</packaging>

<name>Java-Web Application</name>

<!-- Shared version number properties-->
<properties>
<org.springframework.version>3.0.6.RELEASE</org.springframework.version>
</properties>

<dependencies>
   <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
</dependencies>
<build>
<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.0</version>
        <configuration>
            <webResources>
                <resource>
                    <directory>${project.basedir}/src/main/resources</directory>
                </resource>
            </webResources>
        </configuration>
    </plugin>
</plugins>
<finalName>data</finalName>
</build>

<parent>
<groupId>com.data</groupId>
<artifactId>Java-Parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
</project>

我查看了以下网站,但似乎没有帮助:

Define Servlet Context in WAR-File

1 个答案:

答案 0 :(得分:0)

查看你的pom,war文件的名称应该是“webchannel”。

您不必添加context.xml。只需让url由war文件名和你在项目中创建的任何映射确定。