摘要: 将博客搬至CSDN 阅读全文
posted @ 2019-02-20 09:00 williamcai 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 安装maven 参考https://www.cnblogs.com/EasonJim/p/9021372.html 安装jekins https://shimo.im/docs/oeG7YHbJVdwX7eiS 阅读全文
posted @ 2018-10-17 17:37 williamcai 阅读(162) 评论(0) 推荐(0) 编辑
摘要: NAT网络配置参考如下: https://www.cnblogs.com/shynshyn/p/7836658.html https://blog.csdn.net/hiqiming/article/details/75213063 也可以多配置一个网卡,在虚拟机设置里,添加一个网络适配器,设置为桥 阅读全文
posted @ 2018-10-12 16:42 williamcai 阅读(155) 评论(0) 推荐(0) 编辑
摘要: https://start.spring.io/ 阅读全文
posted @ 2018-09-13 16:46 williamcai 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1、打开 Chrome 浏览器主页:http://www.google.cn/chrome 2、地址栏最后的网址是这样的:http://www.google.cn/chrome/browser/desktop/index.html 3、在网址最后加上:?standalone=1&platform=w 阅读全文
posted @ 2018-09-12 15:32 williamcai 阅读(1818) 评论(0) 推荐(0) 编辑
摘要: http://idea.youbbs.org http://idea.congm.in http://intellij.mandroid.cn/ http://idea.imsxm.com/ http://idea.iteblog.com/key.php 阅读全文
posted @ 2018-07-15 19:35 williamcai 阅读(2313) 评论(0) 推荐(0) 编辑
摘要: 1、服务的发布 第一步:写一个服务接口。 import javax.jws.WebService; @WebServicepublic interface HelloService { String say(String name);} 第二步:实现这WS接口,在实现类中完成具体业务逻辑,如下: i 阅读全文
posted @ 2017-05-30 16:57 williamcai 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: 1、安装好git后,进入某个文件夹,运行: git clone http://github.com/xxxx/xxxx.git (可以到github 的repository 的右上角 clone or dowload 获取) 2、修改代码后,查看哪些代码有改动,通过 git diff master 阅读全文
posted @ 2016-12-17 22:44 williamcai 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 通过docker build命令可以建立镜像。 通常需要文本文件Dockerfile,例子如下: from hub.c.163.com/library/nginx 基于的镜像 run echo "hello world" >/etc/nginx/index.xml 追加到index.html 末尾 阅读全文
posted @ 2016-09-20 23:09 williamcai 阅读(2323) 评论(0) 推荐(0) 编辑
摘要: KVM通过内存虚拟化共享物理系统内存,动态分配给虚拟机。KVM需要实现VA(虚拟地址) >PA(物理地址) >MA(机器地址)的转换。 虚机的OS负责VA >PA的转换,KVM负责PA >MA的地址转换。同样内存也是可以overcommit。 阅读全文
posted @ 2016-08-09 12:59 williamcai 阅读(200) 评论(0) 推荐(0) 编辑