idea spring boot打包
程序员文章站
2022-03-30 16:29:45
...
1.maven打包【一般用这个】
<build>
<finalName>打包名</finalName>
<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>
一般打包
打开Project Structure
选择Artifacts -> jar ->From modules with dependencies ->
选择好保存位置 点击ok
这个页面也点ok
直接build就可以了
执行jar包的一些命令
java -jar 你的jar包
linux后台执行:
nohup java -jar 你的jar包 &
查看java进程 ps -ef |grep java
参考:
https://blog.csdn.net/gslsxqrj/article/details/82624157
https://blog.csdn.net/dreamwbt/article/details/83215026
其他
我发现一般打包的输出比maven打包的输出多debug和release区别?
暂时不知道,后面有时间看看
推荐阅读
-
【spring-boot 源码解析】spring-boot 依赖管理梳理图
-
Spring boot 入门(一):快速搭建Spring boot项目
-
只需一步,在Spring Boot中统一Restful API返回值格式与统一处理异常
-
Spring Boot Security OAuth2 实现支持JWT令牌的授权服务器
-
spring boot2.0.4集成druid,用jmeter并发测试工具调用接口,druid查看监控的结果
-
使用Spring boot + jQuery上传文件(kotlin)功能实例详解
-
spring boot + jpa + kotlin入门实例详解
-
Spring boot 集成 Druid 数据源过程详解
-
详解Spring Boot Mysql 版本驱动连接池方案选择
-
Spring Boot Maven 打包可执行Jar文件的实现方法