SpringBoot 项目突然报错:SqlSession 未注册同步,如何解决?

springboot 项目突然报错:sqlsession 未注册同步,如何解决?

springboot项目突然报错:sqlsession 未注册同步

在运行良好的 springboot 项目中,突然出现了如下错误:

creating a new sqlsession
sqlsession [org.apache.ibatis.session.defaults.defaultsqlsession@2dbe837b] was not registered for synchronization because synchronization is not active

该错误并非源自代码修改,而是无故突发。项目配置文件如下:

server:
  port: 8080
spring:
  datasource:
    druid:
      driver-class-name: com.mysql.cj.jdbc.Driver
      url: jdbc:mysql://110.35.20.7:3306/cos?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=Asia/Shanghai
      username: mes_it
      password: 123456

mybatis-plus:
  config-location: classpath:mybatis/mybatis-config.xml
  mapper-locations: classpath:mybatis/mapper/*.xml

解决办法:

根据错误提示,该问题可能与 mybatis 中的同步机制有关。如果您启用了 mybatis 的同步机制,需要检查其配置并确保其正常工作。

另外,您还可以尝试以下操作:

  • 重新编译项目
  • 清除 ide 缓存
  • 重启服务器

如果上述方法无法解决问题,建议您查看这篇博文:

https://blog.csdn.net/web1829...

以上就是SpringBoot 项目突然报错:SqlSession 未注册同步,如何解决?的详细内容,更多请关注其它相关文章!