Spring
文章平均质量分 58
飞@蚁
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Session共享导致的问题排查
记一次测试问题,底层代码自定义了分布式session共享,在以往都是正常的,但在前段时间出问题了,出现了数据不致,因为使用的redis主从进行的测试,首先怀疑数据未及时同步,排查后发现数据已经同步到各从库。 ...原创 2021-12-14 21:23:59 · 1109 阅读 · 0 评论 -
PageHelper多个分页插件报错
PageHelper多个分页插件报错 前段时间有个项目在使用PageHelper分页插件时报错,整理下,报错如下: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: Error querying database. Cause: java.lang.RuntimeException: 在系统中发现了多个分页插件,请检查系统配置!原创 2021-12-08 10:33:19 · 1565 阅读 · 0 评论 -
Spring中Bean、BeanFactory扩展
Bean的扩展 Spring核心容器BeanFactory中有一段注释说明,将Bean的生命周期展现了出来。 * <p>Bean factory implementations should support the standard bean lifecycle interfaces * as far as possible. The full set of initialization methods and their standard order is: * <ol>原创 2021-06-02 15:54:33 · 240 阅读 · 0 评论 -
SpringBoot常用注解简单介绍
SpringBoot注解配置前言一、@Configuration二、@ImportResource三、@Import四、@EnableAutoConfiguration五、@ConfigurationProperties六、@EnableConfigurationProperties七、@Conditional总结 前言 最近梳理了下SpringBoot配置类相关的几个注解,记录下。 包括:@Configuration、@Import、@ImportResource、@EnableAutoConfigur原创 2021-05-26 17:13:56 · 130 阅读 · 0 评论
分享