You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if there is an definitive example how to configure Spring Transaction (AspectJ mode), the current documentation seems confusing. It would be great if you can provide one.
I have an application based on Spring Boot 2.0.x, its running fine but when upgrading to 2.1.x its producing many error output at startup saying error can't determine implemented interfaces which causing slow start up:
[LaunchedURLClassLoader@5fcfe4b2] error can't determine implemented interfaces of missing type net.sf.ehcache.CacheManager
when weaving type org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration
when weaving classes
when weaving
[Xlint:cantFindType]
[LaunchedURLClassLoader@5fcfe4b2] error can't determine implemented interfaces of missing type net.sf.ehcache.CacheManager
when weaving type org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration
when weaving classes
when weaving
It would be great if there is an definitive example how to configure Spring Transaction (AspectJ mode), the current documentation seems confusing. It would be great if you can provide one.
I have an application based on Spring Boot 2.0.x, its running fine but when upgrading to 2.1.x its producing many error output at startup saying
error can't determine implemented interfaces
which causing slow start up:And seems like I'm not the only one:
I get it to working by having the spring transaction in aop.xml:
But I left wondering if this is the correct way, since many other package do not get woven did i miss something that i do not aware of?
The text was updated successfully, but these errors were encountered: