56. 安装Spring Boot应用
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>apply plugin: 'spring-boot'
springBoot {
executable = true
}Last updated
Was this helpful?