上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页
摘要: "用Spring Boot编写RESTful API" 学习笔记 Transactional 判定顺序 propagation isolation 脏读 不可重复读 幻读 不可重复读是指记录不同 (update),幻读是数据条数不同 (insert, delete) 几种隔离的比较 isolatio 阅读全文
posted @ 2019-04-08 23:06 VictorBu 阅读(463) 评论(0) 推荐(0) 编辑
摘要: "用Spring Boot编写RESTful API" 学习笔记 概念 驱动模块 被测模块 桩模块 + 替代尚未开发完毕的子模块 + 替代对环境依赖较大的子模块 (例如数据访问层) 示例 测试 Service 测试 Controller 源码: "spring boot 2 restful" 阅读全文
posted @ 2019-04-08 14:58 VictorBu 阅读(402) 评论(0) 推荐(0) 编辑
摘要: "用Spring Boot编写RESTful API" 学习笔记 添加依赖 添加配置 启动类添加 新建 dao 新增 mapper TvCharacterDao.xml 新建 service 修改 Controller 源码: "spring boot 2 restful" 阅读全文
posted @ 2019-04-06 23:21 VictorBu 阅读(367) 评论(0) 推荐(0) 编辑
摘要: "用Spring Boot编写RESTful API" 学习笔记 程序的层次结构 相邻层级的数据传输 JavaBean + 有一个 public 的无参构造方法 + 属性 private,且可以通过 get、set、is (可以替代 get,用在布尔属性上) 方法或遵循特定命名规范的其他方法访问 + 阅读全文
posted @ 2019-04-06 22:34 VictorBu 阅读(481) 评论(0) 推荐(0) 编辑
摘要: "用Spring Boot编写RESTful API" 学习笔记 约束规则对子类依旧有效 groups 参数 + 每个约束用注解都有一个 groups 参数 + 可接收多个 class 类型 (必须是接口) + 不声明 groups 参数是默认组 javax.validation.groups.De 阅读全文
posted @ 2019-04-04 14:37 VictorBu 阅读(726) 评论(0) 推荐(0) 编辑
摘要: "用Spring Boot编写RESTful API" 学习笔记 RESTful API 介绍 + REST 是 Representational State Transfer 的缩写 + 所有的东西都是资源,所有操作都通过对资源的增删改查 (CRUD) 实现 + 对资源的增删改查对应对 URL 的 阅读全文
posted @ 2019-04-04 11:28 VictorBu 阅读(851) 评论(0) 推荐(0) 编辑
摘要: 异常信息 io.netty.util.IllegalReferenceCountException: refCnt: 0, decrement: 1 原因 handler 继承了 SimpleChannelInboundHandler,SimpleChannelInboundHandler 中 ch 阅读全文
posted @ 2019-04-02 14:46 VictorBu 阅读(3190) 评论(0) 推荐(0) 编辑
摘要: "SpringBoot构建电商基础秒杀项目" 学习笔记 系统架构 存在问题 + 如何发现容量问题 + 如何使得系统水平扩展 + 查询效率低下 + 活动开始前页面被疯狂刷新 + 库存行锁问题 + 下单操作步骤多,缓慢 + 浪涌流量如何解决 源码: "spring boot seckill" 阅读全文
posted @ 2019-03-24 21:44 VictorBu 阅读(1139) 评论(0) 推荐(0) 编辑
摘要: "SpringBoot构建电商基础秒杀项目" 学习笔记 新建表 新增 PromoModel 新增 PromoService 新增 PromoServiceImpl ItemModel 添加 修改 ItemController, OrderController 对应的 service 及详情页 源码: 阅读全文
posted @ 2019-03-24 16:21 VictorBu 阅读(655) 评论(0) 推荐(0) 编辑
摘要: "SpringBoot构建电商基础秒杀项目" 学习笔记 新建表 新增 OrderModel 新增 ItemService 新增 ItemServiceImpl 新增 OrderController 源码: "spring boot seckill" 阅读全文
posted @ 2019-03-23 22:06 VictorBu 阅读(1419) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页