Spring의 외부 속성

6465 단어 springjavaproperties

환경에서 속성 값 가져오기




@Configuration
public class DbConfig {
    Environment env;

    @Autowired
    public DbConfig(Environment env) {
        this.env = env;
    }

    @Bean
    public JdbcTemplate dataSource() {
        DriverManagerDataSource dataSource = new DriverManagerDataSource();
        dataSource.setDriverClassName(env.getProperty("db.driver"));
        dataSource.setUrl(env.getProperty("db.url"));
        dataSource.setUsername(env.getProperty("db.user"));
        dataSource.setPassword(env.getProperty("db.password"));
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        jdbcTemplate.setDataSource(dataSource);
        return jdbcTemplate;
    }
}


app.properties 파일




db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/cas
db.user=root
db.password=123


@PropertySource 및 @Value



@PropertySource 주석은 환경 변수 및 시스템 속성 외에 다른 파일의 속성을 추가합니다. 클래스 경로, 파일 또는 http 접두사를 사용할 수 있습니다.

@Configuration
@PropertySource("classpath:/com/org/config/app.properties")
public class DbConfig {

    @Bean
    public JdbcTemplate dataSource(
            @Value("${db.driver}") String driver, 
            @Value("${db.url}") String url,
            @Value("${db.user}") String user, 
            @Value("${db.password}") String password) {
        DriverManagerDataSource dataSource = new DriverManagerDataSource();
        dataSource.setDriverClassName(driver);
        dataSource.setUrl(url);
        dataSource.setUsername(user);
        dataSource.setPassword(password);
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        jdbcTemplate.setDataSource(dataSource);
        return jdbcTemplate;
    }
}

좋은 웹페이지 즐겨찾기