Mybatis:Cannot enable lazy loading because CGLIB is not available. Add CGLIB to your classpath.

解决方案

根据提示需要添加CGLB库

<dependency>
   <groupId>cglib</groupId>
   <artifactId>cglib</artifactId>
   <version>3.2.10</version>
</dependency>

Mybatis:Cannot enable lazy loading because CGLIB is not available. Add CGLIB to your classpath.
搞定!!

相关文章:

  • 2022-12-23
  • 2022-01-19
  • 2021-08-26
  • 2022-12-23
  • 2021-08-05
  • 2021-05-27
  • 2021-04-24
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2022-03-10
  • 2022-12-23
  • 2022-02-28
  • 2022-01-08
  • 2021-12-25
  • 2021-03-31
相关资源
相似解决方案