gpt4 book ai didi

java - Spring 中具有两个 id 的同一实例

转载 作者:行者123 更新时间:2023-11-29 04:43:47 25 4
gpt4 key购买 nike

有没有办法在 Spring 上下文中使用两个不同的 ID 来引用同一个实例?

我要寻找的是一种为单例范围的 bean id 取别名的方法。

最佳答案

http://docs.spring.io/autorepo/docs/spring/4.1.3.RELEASE/javadoc-api/org/springframework/context/annotation/Bean.htmlBean 名称部分

the name attribute may be used. Also note that name accepts an array of Strings. This is in order to allow for specifying multiple names (i.e., aliases) for a single bean.

@Bean(name={"b1","b2"}) // bean available as 'b1' and 'b2', but not 'myBean'
public MyBean myBean() {
// instantiate and configure MyBean obj
return obj;
}

关于java - Spring 中具有两个 id 的同一实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38099936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com