作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要类似的东西:
@Named({"bean1", "bean2"})
@Service({"bean1", "bean2"})
最佳答案
不是直接的,你有它的方式。但是可以通过重新定义现有的 @Service
(或 @Component
)作为 @Bean
使用名称或名称列表,这是可能的。
@Service("Service-A")
public class SampleService {
public String doSomething() { return "Foo"; }
}
@Configuration
public class SampleConfig {
@Bean(name = {"Service-B", "Service-C"})
public SampleService createMirroredService(@Autowired SampleService service) {
return service;
}
}
SampleService
的三个实例:
Service-A
(您的
@Service
)、
Service-B
, 和
Service-C
.这是有效的,因为您定义了一个并且只有
@Bean
带注释的方法通过实现,具有创建别名的作用。确保在扫描中选择了配置类并且它应该可以正常工作。
value
在
@Component
一个数组。
关于spring - 如何在 Spring 中使用多个名称命名 @Service?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41025627/
我是一名优秀的程序员,十分优秀!