这个是不可以的.
你可以尝数键试使用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();
}
}