配置RedisTokenStore后,启动程序时出现了:
Description:
The bean 'redisTokenStore', defined in class path resource [com/auth/redis/RedisTokenStoreConfig.class], could not be registered. A bean with that name has already been defined in class path resource [com/auth/config/AuthorizationServerConfig.class] and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
原因是因为自定义的bean重名了,在yml中配置:
spring:
main:
allow-bean-definition-overriding: true
配置RedisTokenStore后,启动程序时出现了:
Description:
The bean 'redisTokenStore', defined in class path resource [com/auth/redis/RedisTokenStoreConfig.class], could not be registered. A bean with that name has already been defined in class path resource [com/auth/config/AuthorizationServerConfig.class] and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
原因是因为自定义的bean重名了,在yml中配置:
spring:
main:
allow-bean-definition-overriding: true