摘要: 参考:https://segmentfault.com/q/1010000009800764 阅读全文
posted @ 2018-04-18 10:32 lvlin241 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1. 管理员身份登录GitHub,找到项目2. Settings-->Branches-->Protected branches >Choose a branch... ,选择需要保护的分支,然后点击edit按钮,3. Branch protection for 所选的分支名 --> 勾选Restr 阅读全文
posted @ 2018-04-18 10:26 lvlin241 阅读(21565) 评论(0) 推荐(2) 编辑
摘要: 参考:https://blog.csdn.net/jsu_9207/article/details/51281027 阅读全文
posted @ 2018-04-13 11:06 lvlin241 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/shuifa2008/article/details/41121269 https://blog.csdn.net/shuifa2008/article/details/41121269 阅读全文
posted @ 2018-04-11 17:36 lvlin241 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_37171353/article/details/78005845 阅读全文
posted @ 2018-04-11 17:12 lvlin241 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/wangb_java/article/details/71775637 阅读全文
posted @ 2018-04-11 15:10 lvlin241 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 参考:http://spring.io/guides/gs/rest-service-cors/ 阅读全文
posted @ 2018-04-10 13:55 lvlin241 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/qq779446849/article/details/53102925 https://blog.csdn.net/wo541075754/article/details/50696841 springboot启动类中添加2个方法: 跨域安全问题 阅读全文
posted @ 2018-04-09 16:33 lvlin241 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1. input清空内容 $("#选择器id").val(""); $("input[name='input框名称']"); // 选择所有的name属性等于'input框名称'的input元素 $("input[name!='input框名称']"); // 选择所有的name属性不等于'input框名称'的input元素 $("input[name^='in... 阅读全文
posted @ 2018-04-09 14:38 lvlin241 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 在启动类加注解@ComponentScan("com.controller")即可,括号里表示Controller所在包名。 参考:https://blog.csdn.net/jialiang_chen/article/details/53871046 SpringBoot Controller找不 阅读全文
posted @ 2018-04-08 16:16 lvlin241 阅读(897) 评论(0) 推荐(0) 编辑