目录

工欲善其事

实践出真知

活跃标签: linux java mysql 待分类 js springboot win10 电路 vue macOS nginx esp32 git docker windows idea maven esp8266 python Arduino

存档:

标签: 注解 (1)

Spring 注解整理(个人理解)

顺序不分前后哈就是遇到哪个写哪个记录下 @Cacheable 缓存注解 当返回值为null的时候不缓存 unless = "#result == null" 的意思就是,当返回值为null时,就不缓存 @Cacheable(value = "test:user", key = "#username", unless = "#result == null")