摘要:
将博客搬至CSDN 阅读全文
摘要:
安装maven 参考https://www.cnblogs.com/EasonJim/p/9021372.html 安装jekins https://shimo.im/docs/oeG7YHbJVdwX7eiS 阅读全文
摘要:
NAT网络配置参考如下: https://www.cnblogs.com/shynshyn/p/7836658.html https://blog.csdn.net/hiqiming/article/details/75213063 也可以多配置一个网卡,在虚拟机设置里,添加一个网络适配器,设置为桥 阅读全文
摘要:
https://start.spring.io/ 阅读全文
摘要:
1、打开 Chrome 浏览器主页:http://www.google.cn/chrome 2、地址栏最后的网址是这样的:http://www.google.cn/chrome/browser/desktop/index.html 3、在网址最后加上:?standalone=1&platform=w 阅读全文
摘要:
http://idea.youbbs.org http://idea.congm.in http://intellij.mandroid.cn/ http://idea.imsxm.com/ http://idea.iteblog.com/key.php 阅读全文
摘要:
1、服务的发布 第一步:写一个服务接口。 import javax.jws.WebService; @WebServicepublic interface HelloService { String say(String name);} 第二步:实现这WS接口,在实现类中完成具体业务逻辑,如下: i 阅读全文
摘要:
1、安装好git后,进入某个文件夹,运行: git clone http://github.com/xxxx/xxxx.git (可以到github 的repository 的右上角 clone or dowload 获取) 2、修改代码后,查看哪些代码有改动,通过 git diff master 阅读全文
摘要:
通过docker build命令可以建立镜像。 通常需要文本文件Dockerfile,例子如下: from hub.c.163.com/library/nginx 基于的镜像 run echo "hello world" >/etc/nginx/index.xml 追加到index.html 末尾 阅读全文