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.
是否可以将类中定义的静态变量作为参数传递给 @Qualifier 注释?我尝试了以下格式和其他一些变体,但没有任何效果。
@Qualifier("T(com.test.Constants).BEAN_NAME")
Spring-el 在 @Value 注释中工作。例如,下面的例子是有效的:
@Value("#{ systemProperties['user.region'] }")
尝试 @Qualifier(com.test.Constants.BEAN_NAME)
@Qualifier(com.test.Constants.BEAN_NAME)