使⽤Mybatis-Plus的SqlSessionFactory问题 前些⽇⼦⼯作中出现⼀个问题,项⽬中使⽤了MybatisPlus,然后出现了⼀个问题,Druid的其他的配置都可以正常使⽤,但是配置的SqlSessionFactory这个bean不能被加载,我在这个bean中加载的mybatis-config.xml⽂件也不能被加载,因为代码⾥使⽤了拦截器进⾏...
大概原因是,MybatisPlus需要用自己的 MybatisSqlSessionFactoryBean,用SqlSessionFactory 可能有问题。 MybatisSqlSessionFactoryBean可以设置各种配置。 pom.xml配置,可能有多的 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <ar...