springboot 2.x centos 7.0 部署
Posted 愚智
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 2.x centos 7.0 部署相关的知识,希望对你有一定的参考价值。
1 pom
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.xx.xxApplication</mainClass>
</configuration>
</plugin>
2 application.properties
server.port=xxxx (部署端口号)
3 打好项目jar包(非war)
mvn clean package
4 yum install -y java-1.8.0-openjdk-devel.x86_64
5.cd /etc/systemd/system
vi xxxxx.service
[Unit] Description=xxxx service After=syslog.target [Service] Type=simple ExecStart= /usr/bin/java -jar xxxx-0.0.1-SNAPSHOT.jar [Install] WantedBy=multi-user.target
6 systemctl enable xxxx.service
7 shutdown -r now
done!!!
以上是关于springboot 2.x centos 7.0 部署的主要内容,如果未能解决你的问题,请参考以下文章
Springboot 2.x 整合Dubbo 2.6.x和Dubbo 2.7.x
influxdb-1.7.2.x86_64安装 install influxdb-1.7.2.x86_64 on RedHat & CentOS
CentOS 7.x下部署和配置zabbix 3.2.x监控工具
CentOS6.x/6.5/6.4/6.3/6.2/7.x 64位安装php5.2(使用YUM自动安装)