1.5.9.RELEASE로 2018-01-04 업데이트
https://www.surasint.com/spring-boot-with-no-parent-example/에 전체 코드와 실행 가능한 예제가 있습니다.
이것을 기본으로 필요합니다
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${springframework.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
그러나 이것으로 충분하지 않으므로 spring-boot-maven-plugin의 목표를 명시 적으로 정의해야합니다 (Spring Boot를 부모로 사용하는 경우 명시 적으로 정의 할 필요가 없습니다)
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springframework.boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
그렇지 않으면 실행 가능한 jar 또는 war로 빌드 할 수 없습니다.
아직 JSP를 사용하는 경우 다음이 필요합니다.
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
그렇지 않으면이 오류 메시지가 나타납니다.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project spring-boot-09: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executi
ng in update mode) -> [Help 1]
NO NO, "$ {}"대신 "@"가있는 Spring Boot에서 Maven 프로파일 및 리소스 필터를 사용하는 경우 여전히 충분하지 않습니다 (예 : https://www.surasint.com/spring-boot-maven -resource-filter / ). 그런 다음 이것을 명시 적으로 추가해야합니다.
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
그리고 이것은
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
https://www.surasint.com/spring-boot-with-no-parent-example/ 링크의 예를 참조 하십시오 .