3

我从这篇文章中找到了一种在 spring 中使用基于 Java 的配置和 xml 时使用 .properties 文件的方法。插图如下。我的问题是“有没有办法只使用基于 Java 的配置而不使用 xml 文件来使用 .properties 文件?

即有没有办法@ImportResource在下面的代码中省略并使用纯基于Java的配置?

@Configuration
@ImportResource("classpath:/com/acme/properties-config.xml")
public class AppConfig {
   private @Value("${jdbc.url}") String url;
   private @Value("${jdbc.username}") String username;
   private @Value("${jdbc.password}") String password;

   public @Bean DataSource dataSource() {
      return new DriverManagerDataSource(url, username, password);
   }
}

属性-config.xml

<beans>
   <context:property-placeholder location="classpath:/com/acme/jdbc.properties"/>
</beans>

jdbc.properties

jdbc.url=jdbc:hsqldb:hsql://localhost/xdb
jdbc.username=sa
jdbc.password=

示例主要方法

public static void main(String[] args) {
   ApplicationContext ctx = new AnnotationConfigApplicationContext(AppConfig.class);
   TransferService transferService = ctx.getBean(TransferService.class);
   // ...
}
4

1 回答 1

7

try like this

@Configuration
@PropertySource("/app.properties")
public class Test {
    @Value("${prop1}")
    String prop1;

    @Bean
    public static PropertySourcesPlaceholderConfigurer getPropertySourcesPlaceholderConfigurer() {
        return new PropertySourcesPlaceholderConfigurer();
    }
}

or using Environment

@Configuration
@PropertySource("/app.properties")
public class Test {
    @Autowired
    Environment env;

    @Bean
    public DataSource dataSource() {
        return new DriverManagerDataSource(env.getProperty("url"), env.getProperty("username"), env.getProperty("password"));
    }
}

read this article http://blog.springsource.org/2011/02/15/spring-3-1-m1-unified-property-management/ for more info

于 2013-02-11T04:10:35.153 回答