อัปเดต 2018-01-04 ด้วย 1.5.9 ปล่อย
ฉันมีรหัสเต็มและตัวอย่างที่ทำงานได้ที่นี่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 หรือสงครามที่ปฏิบัติการได้
ยังถ้าคุณใช้ 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]
ไม่ไม่นี่ยังไม่เพียงพอหากคุณใช้ Maven Profile และ Resource Filter พร้อม Spring Boot ด้วย "@" แทนที่จะเป็น "$ {}" (เช่นตัวอย่างนี้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/