spring boot maven plugin 运行在java1.8
spring-boot-maven-plugin
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!--<version>1.5.4.RELEASE</version> 版本由springboot父项目维护-->
</plugin>
</plugins>
</build>
你还可以指定要执行的类,如果不指定的话,Spring会找有这个public static void main(String[] args)方法的类,当做可执行的类。当出现两个类含有main方法时,会报错
指定启动类
第一种 如果你的POM是继承spring-boot-starter-parent的话,只需要下面的指定就行
spring-boot-starter-parent的继承 详见说明
<properties>
<!-- The main class to start by executing java -jar -->
<start-class>com.xx.xx</start-class>
</properties>
第二种如果你的POM不是继承spring-boot-starter-parent的话,需要下面的指定
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.3.5.RELEASE</version>
<configuration>
<mainClass>com.xx.xx</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
运行时指定配制文件加载
java -jar xx.jar --spring.config.location=application.properties