Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
spring注解配置@Named和in有什么区别? 哪个可用于为 bean 提供 bean 名称(就像在 xml 配置中一样)?@org.springframework.beans.factory.annotation.Qualifier'id'
@Named
@org.springframework.beans.factory.annotation.Qualifier
'id'
@Named是 Java 标准(JSR 330),@Qualifier仅用于 Spring;最新版本的 Spring 识别两者。我会使用@Namedbecause@Qualifier来解决您有两个或多个相同类型的 bean 的歧义。
@Qualifier