source

부모 pom.xml이 없는 spring-boot에서는 전쟁 패키징을 생성할 수 없습니다.

manysource 2023. 3. 6. 21:18

부모 pom.xml이 없는 spring-boot에서는 전쟁 패키징을 생성할 수 없습니다.

spring-io에서 제공한 gs-convert-jar-to-war 예를 사용했습니다.스프링 부트 프로젝트 내에서 전쟁 패키징을 생성하는 방법에 대해 설명합니다.

스프링 부트 매뉴얼에서는 자체 부모 폼을 사용할 수 있으므로 모든 스프링 부트프로젝트에 사전 정의된 부모 폼은 생략됩니다.다음 종속성을 추가해야 합니다.

<dependencyManagement>
    <dependencies>
        <dependency>
            <!-- Import dependency management from Spring Boot -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.0.1.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

이 변경(및 이 변경만)을 이 예에 적용했습니다.그 후에는 더 이상 전쟁을 일으킬 수 없다.다음 오류 메시지가 나타납니다.

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project gs-convert-jar-to-war: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]

변경된 pom.xml의 전체 목록은 다음과 같습니다.

<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework-sample</groupId>
    <artifactId>gs-convert-jar-to-war</artifactId>
    <version>0.1.0</version>
    <packaging>war</packaging>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <!-- Import dependency management from Spring Boot -->
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
                <version>1.0.1.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
            </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
            </dependency>
    </dependencies>

    <properties>
        <start-class>hello.Application</start-class>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>http://repo.spring.io/libs-milestone</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>http://repo.spring.io/libs-milestone</url>
        </pluginRepository>
    </pluginRepositories>

</project>

그 문제를 극복할 방법이 있을까요?

제 프로젝트에서는 제 부모님 폼을 사용할 것입니다. 왜냐하면 그것은 회사에 관한 많은 것들을 정의하기 때문입니다.

부모를 제거했기 때문에 WAR 플러그인 구성 선언이 손실되었습니다.여기 있습니다.

<plugin>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
        <failOnMissingWebXml>false</failOnMissingWebXml>
    </configuration>
</plugin>

소스코드에 대해서는, 여기를 참조해 주세요.

N.B. 이것은 Spring Boot 2.0 이상의 부모 폼(war 플러그인 버전이 다름)이나 최신 war 플러그인을 사용하는 경우에는 필요하지 않습니다.

언급URL : https://stackoverflow.com/questions/23114155/spring-boot-without-parent-pom-xml-cannot-generate-war-packaging