maven功能
clean 之后 install。
生成jar包。
jar包提交线上
杀死之前的进程,重新启动新的服务进程
[root@sqkj1 lichuang]# ps -ef | grep java
root 11806 15420 0 17:57 pts/2 00:00:00 grep --color=auto java
root 30430 1 1 16:56 ? 00:00:55 java -jar lichuang.jar
[root@sqkj1 lichuang]# kill -9 30430
[root@sqkj1 lichuang]# ll
总用量 190856
-rw-r----- 1 root root 96898760 9月 15 17:57 lichuang.jar
-rw-r----- 1 root root 96898758 9月 15 16:55 lichuang.jar_bak
-rw------- 1 root root 1621300 9月 15 17:53 nohup.out
drwxr-x--- 3 root root 4096 9月 15 11:10 web
[root@sqkj1 lichuang]# nohup java -jar lichuang.jar &
[1] 15003