jnan77 发布于 01月09, 2020 0 comments thymeleaf模板入门 基本<!DOCTYPE html><html xmlns:th="http://www.thymeleaf.org">内置对象Thymeleaf对象作用#ctx获取Thymel... 阅读全文 »
jnan77 发布于 12月30, 2019 0 comments springboot事务管理 @Transactional使用常规用法@Transactional(rollbackFor = Exception.class)注意事项1、 需要明确指定rollbackFor = Exceptio... 阅读全文 »
jnan77 发布于 12月06, 2019 0 comments nodejs KOA koa2特性 node7.6.x只提供封装好http上下文、请求、响应,以及基于async/await的中间件容器node.js 7.x的harmony模式下才能支持async/await中间件只支持... 阅读全文 »
jnan77 发布于 11月11, 2019 0 comments java ReentrantLock ReentrantLock和synchronized的相同点1.ReentrantLock和synchronized都是独占锁,只允许线程互斥的访问临界区。但是实现上两者不同:synchronized... 阅读全文 »
jnan77 发布于 09月12, 2019 0 comments springboot系列之自定义starter实例 [TOC]1.1 新建项目,并添加依赖<groupId>demo</groupId><artifactId>demo-spring-starter</arti... 阅读全文 »