Maven:在 Maven 构建中 类 下缺少文件

Maven: Files missing under classes in maven build

请耐心等待,我是 Maven 的新手。 所以,我用以下结构检查了这个项目-

-WebContent
-src
-pom.xml

当我通过命令行构建这个项目时,使用命令-

mvn clean
mvn package

我得到一个目标文件夹,其中包含我部署到 tomcat 服务器的 .war 文件。我的项目 UI 已显示,但未调用任何 API。 但是当我将同一个项目导入 Eclipse IDE 并构建它时,我注意到有一组额外的文件和文件夹-

  • build
  • .classpath
  • ImportedClasses
  • .project
  • .settings

以及目标目录中 类 下的一组额外的 .xml。

这是我的pom.xml-

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

<dependencies>

    <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>2.22.1</version>
    </dependency>
    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm</artifactId>
        <version>3.3.1</version>
    </dependency>
    <dependency>
        <groupId>org.glassfish.jersey.core</groupId>
        <artifactId>jersey-server</artifactId>
        <version>2.22.1</version>
    </dependency>
    <dependency>
        <groupId>org.glassfish.jersey.containers</groupId>
        <artifactId>jersey-container-servlet</artifactId>
        <version>2.22.1</version>
    </dependency>
    <dependency>
                   <groupId>javax.servlet</groupId>
                   <artifactId>javax.servlet-api</artifactId>
                   <version>3.0.1</version>
                   <scope>provided</scope>
           </dependency>
    <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-multipart</artifactId>
        <version>2.22.1</version>
    </dependency>

    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.0</version>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.6</version>
    </dependency>
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis</artifactId>
        <version>3.4.2</version>
    </dependency>
    <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
    </dependency><!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
    <dependency>
        <groupId>commons-net</groupId>
        <artifactId>commons-net</artifactId>
        <version>2.0</version>
    </dependency>

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.8.2</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-annotations</artifactId>
        <version>2.8.4</version>
    </dependency>


    <dependency>
        <groupId>io.jsonwebtoken</groupId>
        <artifactId>jjwt</artifactId>
        <version>0.7.0</version>
    </dependency>


    <!-- https://mvnrepository.com/artifact/log4j/log4j -->
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.17</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/javax.json/javax.json-api -->
    <dependency>
        <groupId>javax.json</groupId>
        <artifactId>javax.json-api</artifactId>
        <version>1.1.2</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.json/json -->
    <dependency>
        <groupId>org.json</groupId>
        <artifactId>json</artifactId>
        <version>20171018</version>
    </dependency>


</dependencies>

<build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
                <warSourceDirectory>WebContent</warSourceDirectory>
            </configuration>
        </plugin>
    </plugins>
</build>

为什么两个构建从同一组文件中产生不同的结果? 我该如何解决和理解这个问题?

maven package默认通过编译打包添加默认src,将默认资源添加到war文件中。

基于 Maven 的网络应用程序中资源的默认位置是: src/main/resources 如果您的资源位于其他位置,则不会将其添加到 war 文件中。

如果您希望包含其他资源,如任何 .xml 文件或图像等,您可以在 pom.xml 中明确提及。

示例:在您的构建标签中添加以下内容:

<resources>
 <resource>
   <directory>[your folder here]</directory>
 </resource>

以上指令将资源添加到warWEB-INF文件夹的根目录下。 如果您想将它们添加到特定位置,则可以添加

<resources>
 <resource>
   <directory>[your folder here]</directory>
   <targetPath>[you target path in WEB_INF/classes</targetPath>
 </resource>

示例:

 <resource>
    <directory>src/com/ekagga/ga/config/</directory>
    <targetPath>com/ekagga/ga/config</targetPath>
    <filtering>true</filtering>
  </resource>
</resources>

默认它会添加所有文件,如 .java 等,您可能需要添加一个过滤器来删除此类文件。