0

私のJava構成ファイルは以下のようになります -

@Bean
public JdbcTemplate jdbcTemplate() {
    JdbcTemplate template = new JdbcTemplate(dataSource());
    return template;
}

@Bean
public DataSource dataSource() {
    JndiDataSourceLookup dataSource = new JndiDataSourceLookup();
    return dataSource.getDataSource(env.getProperty("spring.datasource"));
}

私のプロパティファイルのプロパティは以下のようになります -

spring.datasource.username=<myusername>
spring.datasource.password=<mypassword>
spring.datasource.url=jdbc:oracle:thin:@<url>
spring.datasource.driverClassName=oracle.jdbc.driver.OracleDriver
spring.datasource.initSQL=select 1 from dual
spring.datasource.maxActive=50
spring.datasource.minIdle=20
spring.datasource.maxIdle=50
spring.datasource.defaultAutoCommit=true
spring.datasource.initialSize=20
spring.datasource.maxWait=300000
spring.datasource.validationQuery=select 1 from dual
spring.datasource.testOnBorrow=true
spring.datasource.testWhileIdle=false
spring.datasource.timeBetweenEvictionRunsMillis=-1
spring.datasource.testOnReturn=false
spring.datasource.poolPreparedStatements=true

メソッドの1つでJdbcTemplateを自動配線している場所で、jdbcTemplate.getDataSource()を印刷しようとすると、次のように印刷されます-

org.apache.tomcat.jdbc.pool.DataSource@659c54d2{ConnectionPool[defaultAutoCommit=null; defaultReadOnly=null; defaultTransactionIsolation=-1; defaultCatalog=null; driverClassName=oracle.jdbc.driver.OracleDriver; maxActive=100; maxIdle=100; minIdle=10; initialSize=10; maxWait=30000; testOnBorrow=true; testOnReturn=false; timeBetweenEvictionRunsMillis=5000; numTestsPerEvictionRun=0; minEvictableIdleTimeMillis=60000; testWhileIdle=false; testOnConnect=false; password=************; url=jdbc:oracle:thin:@<url>; username=<myusername>; validationQuery=SELECT 'Hello' from DUAL; validationQueryTimeout=-1; validatorClassName=null; validationInterval=30000; accessToUnderlyingConnectionAllowed=true; removeAbandoned=false; removeAbandonedTimeout=60; logAbandoned=false; connectionProperties=null; initSQL=null; jdbcInterceptors=null; jmxEnabled=true; fairQueue=true; useEquals=true; abandonWhenPercentageFull=0; maxAge=0; useLock=false; dataSource=null; dataSourceJNDI=null; suspectTimeout=0; alternateUsernameAllowed=false; commitOnReturn=false; rollbackOnReturn=false; useDisposableConnectionFacade=true; logValidationErrors=false; propagateInterruptState=false; ignoreExceptionOnPreLoad=false; }

基本的に、ユーザー名、パスワード、および URL を除いて、私がセットアップした構成は一切必要ありませんでした。何故ですか?

4

0 に答える 0