上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: https://www.cnblogs.com/xuyiqing/p/10851859.html https://www.cnblogs.com/leeSmall/p/8721556.html https://www.cnblogs.com/linyufeng/p/9885645.html 阅读全文
posted @ 2019-09-18 10:19 紫枫夜羽 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fansili/article/details/78664267 阅读全文
posted @ 2019-09-18 10:17 紫枫夜羽 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1.配置JDK,maven 1).在jenkins页面选择 “ 系统管理 ” >>“全局工具配置” 2).选择新增JDK,别名自定义输入,把自动安装取消, jenkins会自动安装JDK,输入命令 docker exec -it 容器ID /bin/bash , 进入容器,输入命令 echo $JA 阅读全文
posted @ 2019-09-12 14:50 紫枫夜羽 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 1.添加pom <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> </dependency> <dependency> <groupId>io 阅读全文
posted @ 2019-09-09 15:55 紫枫夜羽 阅读(171) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lzhdonald/p/11490933.html 阅读全文
posted @ 2019-09-09 15:47 紫枫夜羽 阅读(256) 评论(0) 推荐(0) 编辑
摘要: public static boolean is2Power3(int num) { return (num & num - 1) == 0; } 阅读全文
posted @ 2019-09-09 15:43 紫枫夜羽 阅读(167) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/kevin-yang123/p/9916572.html https://blog.csdn.net/realjh/article/details/82048492 查询端口是否开放 netstat -anlp | grep 端口号 1、开启防火墙 s 阅读全文
posted @ 2019-09-09 15:31 紫枫夜羽 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: 打开你要上传代码的文件夹位置鼠标右键git Bash Here然后直接运行下面的命令解决问题 git pull origin master –allow-unrelated-histories git push -u origin master -f 阅读全文
posted @ 2019-08-28 13:43 紫枫夜羽 阅读(284) 评论(0) 推荐(0) 编辑
摘要: http://www.mamicode.com/info-detail-1730958.html 阅读全文
posted @ 2019-08-27 15:15 紫枫夜羽 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 对象和字段自定义 /** * 判断List<Knowledge>的对象code是否有重复,有重复true * * @param orderList * @return */ private Boolean knowledgeIsRepeat(List<Knowledge> orderList) { 阅读全文
posted @ 2019-08-27 14:38 紫枫夜羽 阅读(12958) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页