上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页
摘要: local,dev, test 分支都可以访问swagger 阅读全文
posted @ 2018-04-03 08:15 梦见舟 阅读(2224) 评论(0) 推荐(0) 编辑
摘要: 1. 启动spring-boot项目 xxxx代表生成的jar包 阅读全文
posted @ 2018-04-02 16:42 梦见舟 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Captcha captcha = getCaptcha(captchaId); // 通过反射获取验证码值 Class classType = captcha.getClass(); Field field; field = classType.getDeclaredField("response"); field.setAccessible(true); // 抑制Java对修饰符的... 阅读全文
posted @ 2018-03-29 14:07 梦见舟 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 参考资料: http://www.runoob.com/go/go-tutorial.html 阅读全文
posted @ 2018-03-29 09:47 梦见舟 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 参考资料 https://blog.csdn.net/gaoweijiegwj/article/details/79105276 阅读全文
posted @ 2018-03-28 17:17 梦见舟 阅读(916) 评论(0) 推荐(0) 编辑
摘要: File->Settings Project Structure 阅读全文
posted @ 2018-03-28 10:16 梦见舟 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 1. WebSocket是一种网络通讯协议 参考文档:http://www.ruanyifeng.com/blog/2017/05/websocket.html https://github.com/mrniko/netty-socketio http://www.runoob.com/html/h 阅读全文
posted @ 2018-03-24 09:42 梦见舟 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1. 看完3本书《图解密码技术》《Spring源码深度解析》《java8实战》 2. 搭建一个小型项目 基于jenkins+gitlab+maven。 zookeeper+dubbo 3. 融入自动化测试 4. 熟练使用一种项目管理软件 每天坚持做的事情 坚持每天写博客,把每天学习到的新东西记录下来 阅读全文
posted @ 2018-03-21 14:12 梦见舟 阅读(104) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-21 13:53 梦见舟 阅读(2) 评论(0) 推荐(0) 编辑
摘要: public enum Color { RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色", 4); // 成员变量 private String name; private int index; // 构造方法 private Color(String name... 阅读全文
posted @ 2018-03-21 11:05 梦见舟 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页