在前面第一章节《<a href="http://www.jianshu.com/p/fa5258b9c4ea">Spring-Boot 快速入门——Hello World</a>》也可以通过命令运行jar包的方式启动spring-boot。我们以第一章节的例子进行讲解。
1、在通过java命令运行jar包方式启动的时候,需要指定一个main函数作为启动入口。只需要中pom.xml加入如下配置
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.cqf.chapter1.Application</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
2、重新构建 mvn clean package后,跳转到target目录,输入 java -jar chapter1-0.0.1-SNAPSHOT.jar
3、运行效果
具体例子可以参考<a href="https://github.com/qifuchen/cqf-demo">chapter1</a>
你喜欢就是我最大的动力——cqf
网友评论