我目前想要自动设置对象的/ bean的ID;我到目前为止工作,但它需要指定我正在引用的计数器的确切bean名称。这是如何做:
@Autowired
@Value("#{ counter.next() }")
public void setId(int id) {
this.id = id;
}
我的配置有一个计数器:
@Bean
public Counter counter() {
return new Counter();
}
需要ID集的对象也在与原型范围的bean相同的配置中定义。
虽然到目前为止这个工作正常,但我想做的是按类型自动装配计数器,而不是通过名称。我尝试了以下,但它不起作用:
@Value("#{ T(packagepath.Counter).next() }")
我假设它只适用于静态方法,或者至少我通过使我的计数器静态来实现它 - 唯一的问题是我不想要那样。旁注:spring doc使用这种格式来调用Math.random()
:T(java.lang.Math).random()
@Value
annotations (or elsewhere)?这有效......
@SpringBootApplication
public class So52118412Application {
public static void main(String[] args) {
SpringApplication.run(So52118412Application.class, args);
}
@Value("#{beanFactory.getBean(T(com.example.Counter)).next()}")
int n;
@Bean
public ApplicationRunner runner() {
return args -> System.out.println(n);
}
}
@Component
class Counter {
int i;
public int next() {
return ++i;
}
}
进一步解释; #{...}
的根对象是BeanExpressionContext
,允许按名称访问任何bean。但是,BeanExpressionContext
还有一个属性beanFactory
,它允许你引用它,并对它执行任何操作(例如按类型获取bean)。