简单构建发布脚本 2018年3月2日 | Leave a comment 问题: 解决: #!/bin/bash # 构建打包上传 并重启 # /home/wms/start.sh begin ##!/bin/bash #cd `dirname $0` #nohup java -jar wms.war >> wms.log 2>&1 & # start.sh end # mvn clean -DskipTests=true install package scp -i ../docs/dev1 target/wms.war root@122.152.200.229:/root/ pid=`ssh -i ../docs/dev1 root@122.152.200.229 ps aux |grep java|grep -i wms|awk '{print $2}'` echo $pid ssh -i ../docs/dev1 root@122.152.200.229 kill $pid ssh -i ../docs/dev1 root@122.152.200.229 cp /root/wms.war /home/wms/ ssh -i ../docs/dev1 root@122.152.200.229 /home/wms/start.sh 1234567891011121314151617 #!/bin/bash# 构建打包上传 并重启 # /home/wms/start.sh begin##!/bin/bash#cd `dirname $0`#nohup java -jar wms.war >> wms.log 2>&1 &# start.sh end #mvn clean -DskipTests=true install packagescp -i ../docs/dev1 target/wms.war root@122.152.200.229:/root/pid=`ssh -i ../docs/dev1 root@122.152.200.229 ps aux |grep java|grep -i wms|awk '{print $2}'`echo $pidssh -i ../docs/dev1 root@122.152.200.229 kill $pidssh -i ../docs/dev1 root@122.152.200.229 cp /root/wms.war /home/wms/ssh -i ../docs/dev1 root@122.152.200.229 /home/wms/start.sh … Read More
spring boot 启用 cache 2018年2月24日 | Leave a comment 问题: spring boot 启用 cache 解决: 增加 @EnableCaching [… Read More
spring boot + security +mysql+ web demo 2018年2月24日 | Leave a comment 问题: 解决: 创建mysql表 [crayon-67463e0dd0d60287… Read More
spring boot +mvc + security demo 2018年2月24日 | Leave a comment 问题: 解决: 运行后,访问 http://localhost:8080/user… Read More
retrofit demo 2018年2月14日 | Leave a comment 声明式 restful 接口 解决: App.java [crayon-67463e0dd165… Read More
spring boot + junit demo 2018年2月6日 | Leave a comment 问题: spring boot + junit demo 解决: [crayon-67463e0… Read More
spring boot + kotlin + gradle demo 2018年2月5日 | Leave a comment 问题: spring boot + kotlin + gradle demo 解决: 执行 [c… Read More
gradle 使用aliyun maven repositories 2018年2月5日 | Leave a comment repositories { maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'} mavenCentral() } 1234 repositories {maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}mavenCentral()} &… Read More
【转】 [置顶] 史上最简单的 SpringCloud 教程 | 终章 2018年2月5日 | Leave a comment http://blog.csdn.net/forezp/article/details/70148833 &n… Read More
【转】【入门篇】Kibana 查询表达式 2018年2月5日 | Leave a comment http://blog.csdn.net/pistolove/article/details/53693963… Read More