在IDEA如何使用Maven将SpringBoot程序打包为可独立执行的jar包
程序员文章站
2022-03-30 16:29:51
...
检查pom配置文件
打开终端,使用mvn命令打包
右键-Open in Terminal,打开终端
在终端中输入打包命令,并清除以往打好的包
mvn clean package
如图为打包成功
打包过程中遇到的两个问题
java.lang.Exception: No runnable methods
解决方法:在测试方法上添加注解@Test
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
解决方法:在test下创建与src文件夹相同的目录
启动jar包测试运行
在jar包目录下打开控制台,输入运行命令
java -jar xx.jar
项目启动成功
上一篇: html中option什么意思
下一篇: idea spring boot打包