我使用javax标准注释@Named
来定义spring4中的bean。要设置bean名称,我可以尝试@Named("MyBean")
,但它没有更改bean名称。
我使用了弹簧Component
注释@Component("MyBean")
,但效果很好。
是否可以使用@Named
bean定义为L
@Named("myBean") //This not
@Component("myBean") //This works
@Scope("session")
public class User implements HttpSessionBindingListener, Serializable {
application.context
是
<context:component-scan base-package="foo.bar" />
答案 0 :(得分:2)
我同意@fabian所说的话。您可以使用@Named批注来设置bean名称。如果bean名称不匹配,则它会按类型回退到自动连接。
我尝试了几个例子。他们为我工作。
AppConfig.java
package com.named;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan
public class AppConfig {
}
NamedService.java
package com.named;
import javax.inject.Named;
@Named("namedTestDependency")
public class NamedService {
public void namedMethod(){
System.out.println("Named method");
}
}
NamedServiceTest.java
package com.named;
import static org.junit.Assert.assertNotNull;
import com.named.AppConfig;
import com.named.NamedService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes=AppConfig.class)
public class NamedServiceTest {
//Matched by name of dependency
@Autowired
private NamedService namedTestDependency;
//Falls back to auto-wiring by type
@Autowired
private NamedService noDeclaration;
@Test
public void testAutowiring(){
assertNotNull(namedTestDependency);
assertNotNull(noDeclaration);
}
}