原创 springboot的配置文件的優先級

感謝:https://m.imooc.com/article/23670

原创 使用cors-filter解決跨域資源訪問的問題

https://blog.csdn.net/M100782530qrcord/article/details/79957075  和https://blog.csdn.net/java_green_hand0909/article/det

原创 Spring Boot之 Controller 接收參數和返回數據總結

感謝:https://blog.csdn.net/jy02268879/article/details/82830789

原创 spring的aop與攔截器

1、spring的aop:https://www.cnblogs.com/softidea/p/6123307.html 2、攔截器涉及的JoinPoint 的用法:https://blog.csdn.net/qq_15037231/ar

原创 mybatis的foreach的使用方法

1、mybatis的foreach的3種使用方法:https://blog.csdn.net/weixin_39220472/article/details/80358416 2、mybatis 批量插入以及merge into用法:ht

原创 通過實現springframework的Order接口指定bean實例初始化加載順序的代碼示例

一、前言 通過實現springframework的spring-core源碼包中org.springframework.core.annotation.Order加載排序接口,從而可以實現對於在SpringContext上下文bean對象

原创 Redis實現Session共享

https://blog.csdn.net/u013490585/article/details/70258470/  和https://blog.csdn.net/qq_31803503/article/details/80917282

原创 mysql數據庫處理TIMESTAMP格式日期

1、mysql數據庫處理TIMESTAMP格式日期: https://blog.csdn.net/weixin_38423249/article/details/80103373  或者 https://blog.csdn.net/u01

原创 caffeine資料彙總

1、springboot結合caffeine: Caffeine Cache 進程緩存之王:https://www.jianshu.com/p/15d0a9ce37dd 和 Spring Boot緩存實戰 Caffeine:https:/

原创 自定義線程池的名稱(ThreadPoolExecutor)

https://www.cnblogs.com/cq-yangzhou/p/11721021.html

原创 IDEA通過git回滾到某個提交節點或某個版本

https://www.cnblogs.com/pxblog/p/12246248.html

原创 IDEA 使用SequenceDiagram插件繪製時序圖

https://www.cnblogs.com/-beyond/p/11408082.html

原创 SpringBoot三招組合拳,手把手教你打出優雅的後端接口

https://www.jianshu.com/p/b5b8613769db

原创 git要下載指定分支,指定版本,回滾到指定版本的命令

1、指定版本: git   log   看一下hash。然後   git checkout hash值就可以 2、指定分支: git clone xxx.git --branch 分支名      3、回滾版本: 3、1、重置到指定版本號

原创 Java動態代理機制詳解(JDK 和CGLIB,Javassist,ASM

1、https://blog.csdn.net/luanlouis/article/details/24589193   和 https://www.cnblogs.com/flyingeagle/articles/7102282.htm