spring-boot-starter-dubbo
spring-boot-starter-dubbo copied to clipboard
@Configuration 和 @Reference一起使用无效……
比如shiro的配置类里,加上@Reference 注入的一直是null
但是在普通的@Component的类里,加Reference就可以…… 所以我现在是单独写个Component的类里,把要用到的Reference都配置好,然后在Configuration里再Autowired Component。