Esempio n. 1
0
 private void loadConfig() {
   dataSource = new MysqlDataSource();
   dataSource.setServerName(configFile.getDatabaseName());
   dataSource.setUser(configFile.getDatabaseUser());
   dataSource.setPassword(configFile.getDatabasePassword());
   this.jdbcTemplate = new JdbcTemplate(dataSource);
 }