文章目的:java项目打包成jar包或war包, 放在服务器上去运行
一、编写打包配置
1. pom.xml
在项目中的pom.xml文件里面修改<build>...</build>的代码
>> 简单打包成Jar形式,参考示例:
<build><finalName>ronasr-api</finalName><resources><resource><directory>src/main/resources</directory><excludes><exclude>dev/**</exclude><exclude>test/**</exclude><exclude>prod/**</exclude></excludes></resource><resource><filtering>true</filtering><directory>src/main/resources/${package.env}</directory></resource></resources><plugins><!-- Jar打包插件 --><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><executions><execution><goals><goal>repackage</goal></goals></execution></executions></plugin></plugins> </build>>> 在IDEA开发工具下,运行Maven插件的打包package命令:
>> 将打包好的jar包,上传服务器。通过java -jar命令进行启动。