小编典典
你需要在bean配置上编写此结构(这是你的数据源):
${dataSource.url}
${dataSource.username}
${dataSource.password}
这是我的示例,正在运行。你只需要将属性放在hibernate.properties上,然后进行设置即可:
classpath:hibernate.properties
Obs .:版本为
log4j:1.2.16
springframework:3.1.4。Release
HikariCP:1.4.0
属性文件(hibernate.properties):
hibernate.dataSourceClassName=oracle.jdbc.pool.OracleDataSource
hibernate.hikari.maximumPoolSize=10
hibernate.hikari.idleTimeout=30000
dataSource.url=jdbc:oracle:thin:@localhost:1521:xe
dataSource.username=admin
dataSource.password=
2020-04-13