我已经将一个基于Spring 4.0的项目从xml转换为javaconfig。
初始化时,我的一个bean需要通过Spring@Service(buildingService
)访问Hibernate以从DB获取一些配置数据。bean初始化如下所示:
@Bean
@DependsOn({ "transactionManager", "webSocketHandler", "buildingService" })
Smarty smarty() {
Smarty bean = new Smarty();
bean.init(); // I also tried @Bean(initMethod = "init") with no difference
return bean;
}
问题是在bean. init()
中,访问服务,失败并出现NullPointerException
。
我将buildingService
添加到@DependsOn
,但没有帮助。
可能@Service
-注释类在@Bean
之后处理!?
我可以自己预先初始化@Service
-注释类吗?
编辑1
到目前为止,感谢所有的反馈!
我需要添加一些细节:
buildingService不是@Bean
,它是一个@Service
,看起来像这样:
@Service("buildingService")
@Transactional
public class BuildingService {
...
public List<Building> getAll() {
final Session session = sessionFactory.getCurrentSession();
final Query query = session.createQuery("from Building order by name");
return query.list();
}
...
}
Smarty是一个Spring管理的Bean,并在执行root-context初始化的@Configuration
注释类中初始化。
Smarty直接依赖buildingService,如下所示:
@Resource(name = "buildingService")
private BuildingService buildingService;
我尝试使用@PostConstruct
注释Smart. init()
,但这并没有改变任何事情。
请注意,Smarit. init()
做的第一件事是调用buildingService.getAll();
您对bean的生命周期感到困惑。Spring必须先创建bean,然后才能注入任何东西。在您的@Bean
方法中,您已经创建了bean
Smarty bean = new Smarty();
然后立即调用它的一个方法
bean.init();
这似乎取决于注入的字段。
这两个电话之间什么都没有。你指望Spring怎么做?
相反,您可以使用@PostConstruct
注释您的init()
方法。一旦Spring完成了对bean的初始化,即。当您的@Bean
方法返回并且Spring注入了对象的所有注入目标时,它将自动调用该方法。
@DependsOn
在这里不是必需的。
@Service
注释的bean通过组件扫描自动发现和初始化,以在Spring Configuration上启用此使用@ComponentScan
。
@ComponentS可以
配置用于@Configuration
类的组件扫描指令。
@Bean
用于手动创建bean,无需使用@Service
或组件扫描等特殊注释。
@Bean
指示一个方法产生一个要由Spring容器管理的bean。(…)通常,@Bean方法是在@Configuration类中声明的。在这种情况下,bean方法可以通过直接调用它们来引用同一类中的其他@Bean方法。
上下文配置
@Autowired
EntityManager entityManager; //needs to access Hibernate
@Bean
Smarty smarty() {
return = new Smarty(entityManager);
}
还有你的Smarty
bean
public Smarty {
final EntityManager entityManager;
public Smarty(EntityManager entityManager){
this.entityManager = entityManager;
}
}
您不需要@DependsOn
注释,因为您的Smarty bean直接依赖于BuildingService。有关何时使用它的更多信息,请参阅@DependsOn
javadoc。
以下示例演示了如何解决问题:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SmartyTest.TestConfig.class)
public class SmartyTest {
@Autowired
Smarty1 smarty1;
@Autowired
Smarty2 smarty2;
@Test
public void testSmarty() throws Exception {
}
@Configuration
static class TestConfig {
@Bean
public BuildingService buildingService() {
return new BuildingService();
}
@Bean
public Smarty1 smarty1(BuildingService buildingService) {
Smarty1 smarty = new Smarty1(buildingService);
smarty.init();
return smarty; // manually inject dependencies & handle initialisation
}
@Bean
public Smarty2 smarty2() {
// injecting the building service & initialising the component is handled by spring
// by using @Autowired & @PostConstruct(-> alternative to @Bean(initMethod="init"))
return new Smarty2();
}
}
static class BuildingService {
public void buildSomething() {
System.out.println("BuildingService: I am building something!");
}
}
static class Smarty1 {
BuildingService buildingService;
Smarty1(BuildingService buildingService) {
this.buildingService = buildingService;
}
public void init() {
System.out.println("Smarty 1: initialising ...");
buildingService.buildSomething();
}
}
static class Smarty2 {
@Autowired
BuildingService buildingService;
@PostConstruct
public void init() {
System.out.println("Smarty 2: initialising ...");
buildingService.buildSomething();
}
}
}