上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 31 下一页
摘要: 安装参考:https://www.cnblogs.com/yaowen/p/9486138.html 密码安全:https://blog.csdn.net/hello_world_qwp/article/details/79551789 sha2问题:https://blog.csdn.net/s6 阅读全文
posted @ 2019-08-07 13:28 byebai95 阅读(207) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static Map<String, String> executeCmd(String cmd) { Runtime rt = Runtime.getRuntime(); // 运行时系统获取 Map<String, String> lineM 阅读全文
posted @ 2019-08-04 16:17 byebai95 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 解决跨域: @Configuration @EnableAutoConfiguration public class ZooConfiguration { @Bean public FilterRegistrationBean<CorsFilter> corsFilter() { UrlBasedC 阅读全文
posted @ 2019-07-26 17:34 byebai95 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 一.某个(8000)端口被占用? 二.git 切换分支 三. dcoker 如何运行 mysql 镜像 四.CentOS 7.x 防火墙状态查询与关闭 五. 后台启动 jar 与结束 六.nginx 前后端分离配置 conf/nginx.conf 主配置文件 前端项目:/work/project/A 阅读全文
posted @ 2019-07-24 17:34 byebai95 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 一、支持 lambda 表达式 例如:查询学生信息,并打印 List<Student> studentList = Student.findAllStudent(); for(Student student:studentList){ System.out.println(student); } 使 阅读全文
posted @ 2019-07-16 15:13 byebai95 阅读(1397) 评论(1) 推荐(2) 编辑
摘要: 参考:https://blog.csdn.net/qq_39241443/article/details/81293939 添加依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-s 阅读全文
posted @ 2019-07-13 18:42 byebai95 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 在代码中调用第三方API 获取数据 阅读全文
posted @ 2019-07-13 17:53 byebai95 阅读(5680) 评论(0) 推荐(0) 编辑
摘要: 一.标题写法 1.在文本下方加上 =,文本变为大标题 2.在文本下方加上-,文本变为中标题 3.单独向输入 = ,则需要空一行 标题的另一种写法: # 一级标题 ## 二级标题 ### 三级标题 ##### 四级标题 二.基本语法 斜体: *内容* ,或者 -内容- 粗体: **内容**,或者 -- 阅读全文
posted @ 2019-07-12 18:33 byebai95 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 设计模式的用途(参考) 设计模式代表了最佳实践,通常被有经验的面向对象的软件开发人员采用。设计模式是软件开发人员在软件开发过程中面临一般问题的解决方案。这些解决方案是众多软件开发人员在相当长的时间的实验和错误总结出来的。 设计模式有哪些? 创建型 : 简单工厂、抽象工厂、单例模式、原型模式、建造者模 阅读全文
posted @ 2019-07-01 11:43 byebai95 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 死锁: 如何避免死锁? 有序资源分配法、银行家算法 死锁预防:打破四大条件 可能造成死锁的条件:互斥、环路等待、不剥夺、保持和等待 银行家算法: 是一种防止死锁的常用算法,由Dijkstra 提出的,将死锁的问题演示为一个银行家贷款的模型。一个银行家向一群客户发放信用卡,每个客户有不同的信用额度,每 阅读全文
posted @ 2019-06-28 11:27 byebai95 阅读(299) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 31 下一页