摘要: https://www.cnblogs.com/bigdataZJ/p/springboot log.html https://blog.csdn.net/qq_30764991/article/details/80642502 阅读全文
posted @ 2019-08-08 10:17 Utb 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 星期三: 1.使用kafka发送对象以及双方通信 2.redis缓存时效 3.使用Java dump工具比较spring boot内置的tomcat、netty性能 4.10万条数据查询,比较redis和MySql速度 5.编程规范(阿里巴巴规范) 6.springboot各个注解的作用 阅读全文
posted @ 2019-08-07 10:51 Utb 阅读(90) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/14185725/2364360?cid=729911 https://mp.weixin.qq.com/s/BzXNfBzq 2TOCbiHG3xcsQ 什么是springboot 用来简化spring应用的初始搭建以及开发过程 。 配置: 使用特定的 阅读全文
posted @ 2019-08-06 14:39 Utb 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 简单原理:SVN会将Resposity的每一次修改后的代码当作中间状态保存并编号,这样就可以进行版本控制。客户端获得Reposity的副本,对副本的操作不影响服务端的Resposity. 使用流程: 1.checkout 2.进行增(先将文件拖到working copy,然后使用add命令加入本地R 阅读全文
posted @ 2019-08-06 10:06 Utb 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Shiro 具有认证、授权、会话管理、加密。 是通过Filter实现,即通过URL规则来进行过滤和权限校验。 动态配置: https://www.jianshu.com/p/43ff03525d88 https://www.jianshu.com/p/d6ded24b9138 授权方法中用的对象在认 阅读全文
posted @ 2019-08-02 22:08 Utb 阅读(219) 评论(0) 推荐(0) 编辑
摘要: https://www.orchome.com/5 启动Kafka出现文件被占用: https://blog.csdn.net/zheng199172/article/details/82388364 kafka发送对象、数组方法:将对象、数组转为JSonStr。Json的使用办法:https:// 阅读全文
posted @ 2019-08-02 14:06 Utb 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Spring Boot对Redis操作进行了封装,其接口为Operations。 使用步骤: 1.增加依赖。(时间有点长) org.springframework.boot spring boot starter data redis 2.配置属性。(不配不影响使用) 3.配置Spring Boot 阅读全文
posted @ 2019-08-02 09:04 Utb 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Thymeleaf只是个模板引擎,与前端框架相互独立。 使用步骤: 1.引入依赖。 org.thymeleaf thymeleaf spring5 3.0.9.RELEASE 2.配置 3.在页面上加入 4.编写页面 阅读全文
posted @ 2019-08-01 13:12 Utb 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1.引入依赖。mysql、mybatis spring boot starter。 2.配置数据库。 spring.datasource.url=jdbc:mysql://localhost:3306/test spring.datasource.username=root spring.datas 阅读全文
posted @ 2019-08-01 12:31 Utb 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 一: 定义:email=zasxzhao@qq.com 使用:@Value("${email}") 阅读全文
posted @ 2019-08-01 11:04 Utb 阅读(188) 评论(0) 推荐(0) 编辑