JOOQ with MSSQL-3
The exact error shows like
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.orioninc.dts.spring.authentication.DtsAuthoritiesMapper required a bean of type 'com.orioninc.dts.user.services.UserService' that could not be found.
Action:
Consider defining a bean of type 'com.orioninc.dts.user.services.UserService' in your configuration.
Fix for this is
Spring Boot 2.5 is not yet aware of this, and as such, you'll have to explicitly exclude R2dbcAutoConfiguration (not R2dbcDataAutoConfiguration!) from your spring boot application (unless you're using R2DBC with jOOQ, of course):
@SpringBootApplication(exclude = { R2dbcAutoConfiguration.class })
Comments
Post a Comment