本稿はSpringFrameworkの@PropertySourceについて説明します。
@PropertySourceとは
@PropertySourceはプロパティファイルを読み込むアノテーションです。
@Configurationクラスと併用されることがよくあります。
@PropertySourceは引数にプロパティファイルのパスを指定します。
読み込まれたプロパティはEnvironmentクラスを@Autowiredすることでクラス内で使用できます。
以下、DB設定プロパティの読み込みサンプルです。
@Configuration
@PropertySource({ "classpath:/jdbc.properties" })
public class DBConfig {
@Autowired
private Environment environment;
@Bean
public DataSource getDataSource() {
final DriverManagerDataSource dataSource = new DriverManagerDataSource();
dataSource.setDriverClassName(environment.getProperty("jdbc.driverClassName"));
dataSource.setUrl(environment.getProperty("jdbc.url"));
dataSource.setUsername(environment.getProperty("jdbc.username"));
dataSource.setPassword(environment.getProperty("jdbc.password"));
return dataSource;
}
}
|