
Spring
花木雨
我的征途是星辰大海
展开
-
spring boot redis实现秒杀
spring boot redis实现秒杀原创 2022-05-16 11:00:54 · 758 阅读 · 0 评论 -
Spring @Configuration 注解介绍
转载:https://www.jianshu.com/p/721c76c1529c转载 2019-12-02 09:16:01 · 185 阅读 · 0 评论 -
Spring注解——使用@ComponentScan自动扫描组件
转载:https://www.jianshu.com/p/64aac6461d5b转载 2019-11-11 21:02:11 · 364 阅读 · 0 评论 -
Spring中InitializingBean接口的使用
转载:https://www.cnblogs.com/weiqihome/p/8922937.html转载 2019-11-11 20:54:18 · 169 阅读 · 0 评论 -
@Cachable 使用时出现的问题
@Cachable 使用时出现的问题问题1: org.springframework.expression.spel.SpelEvaluationException: EL1008E:(pos 0): Property or field ‘mykey’ cannot be found on object of type ‘org.springframework.cache.interceptor...原创 2019-08-12 14:38:45 · 2285 阅读 · 0 评论 -
Spring 参数 List
Spring 参数类型为List错误的例子:该写法有如下异常。正确写法为将List再封装成一个对象。 @PostMapping("/doors") public Response addDoors(@RequestBody DoorVO[] doors) { // todo batchAddDoors(Lists.newArrayList(doors)); ...原创 2019-08-12 15:39:34 · 669 阅读 · 0 评论