After upgrading to Spring Boot 1.4.0, NullPointerException in AbstractPlatformTransactionManager

前端 未结 2 780
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-19 14:53

I have upgraded from Spring Boot 1.3.2 to 1.4.0, and now fail to start my application - My BeanPostProcessor invokes the 3d party open source Lazy Chopper, whi

相关标签:
2条回答
  • 2021-01-19 15:19

    I also encountered this problem. In my case, I just enabled Spring aspects tooling and built the project. It worked.

    0 讨论(0)
  • 2021-01-19 15:34

    I had the very same problem. My fault was that due to wrong pointcut definition I ended up applying aspect onto TransactionManager (I had the standard one extended). So the null logger was the one of the CGLIB's generated extended class. The real bean had its logger nicely instantiated.

    0 讨论(0)
提交回复
热议问题