3

この記事のJavaベースの構成とxmlを使用するときに、春に.propertiesファイルを使用する方法を見つけました。イラストは以下の通りです。私の質問は、「xmlファイルを使用せずにJavaベースの構成のみを使用して.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

このようにしてみてください

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

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

または環境を使用する

@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"));
    }
}

詳細については、この記事http://blog.springsource.org/2011/02/15/spring-3-1-m1-unified-property-management/をお読みください。

于 2013-02-11T04:10:35.153 に答える