Spring 属性注入,可以调用另一个Bean的方法吗

2024-12-01 08:23:03
推荐回答(1个)
回答1:

这个是不可以的.
你可以尝数键试使用Spring Configuration注解绕弯实现.

@Configuration
public class AppConfig {
private @Value("#{jdbcProperties.url}"好备) String jdbcUrl;
private @Value("#{jdbcProperties.username}") String username;
private @Value("#{jdbcProperties.password}"友毕毁) String password;

@Bean
public FooService fooService() {
return new FooServiceImpl(fooRepository());
}

@Bean
public Bean fooRepository() {
return fooService().getBean();
}
}