Maven WebApp META-INF context.xml

2022-09-03 06:16:52

我正在使用Maven 3,我正在尝试在webapp文件夹下添加META-INF文件夹。因此,我正在尝试执行以下操作:

src
 main
  webapp
   META-INF
    context.xml
   WEB-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>
<finalName>data</finalName>
</build>

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

在 src/main/resources 下,我添加了一个 META-INF\context.xml。当 WAR 文件使用 mvn 包打包时,结构如下所示:

data
 webapp
  META-INF
  WEB-INF
  index.jsp

WEB-INF下的相关文件可以看到。但是,META-INF 文件夹为空。我的默认 Maven 将在 WEB-INF/类下添加资源。

我特别想要:

data
 webapp
  META-INF
   context.xml
  WEB-INF

这怎么可能?我已经尝试了其他方法,但它仍然不起作用。上下文.xml包含以下内容:

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

我尝试从src\main\resources中删除META-INF文件夹,并直接将其放在webapp\META-INF下。上下文.xml显示,但部署到 Tomcat 中时,我定义的上下文根不起作用。


答案 1

将 META-INF 文件夹放在 src/main/resources 中。

把这个放在你的绒球上.xml...对不起,我以前错过了;

<build>
<plugins>
    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>


                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                    </manifest>
                </archive>

                <webResources>
                    <resource>
                        <!-- this is relative to the pom.xml directory -->
                        <directory>${project.basedir}/src/main/resources
                        </directory>

                    </resource>
                </webResources>



                <warName>mywar</warName>
            </configuration>
        </plugin>
</plugins>
</build>

网络资源标签是重要的...希望这有帮助


答案 2

请改用标记。上面的答案使用将 src/main/resources 中的所有内容复制到 Web 应用程序的根目录,这可能不是您要执行的操作,也不是您要遵循的示例。


推荐