Spring Frameworkのfile:に関する記事です。
file:とは
file:はフルパスでファイルを指定します。
リソースファイルの指定はclasspath:も指定できますが、classpath:は自プロジェクト内のファイルに限定されるのに対してfile:は外部ファイルを読み込む場合によく使います。
以下、ファイル指定のサンプルです。
@Configuration
@PropertySource({ "file:C:/test/jdbc.properties" })
public class DB2JdbcConfig {
@Autowired
private Environment environment;
@Bean
public DataSource datasource() {
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;
}
}
|