Created
May 15, 2015 19:11
-
-
Save anataliocs/b43875abd9339bb070ea to your computer and use it in GitHub Desktop.
Oracle config for jHipster Spring Boot App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring: | |
profiles: dev | |
datasource: | |
driverClassName: oracle.jdbc.OracleDriver | |
dataSourceClassName: oracle.jdbc.pool.OracleDataSource | |
url: jdbc:oracle:thin:@localhost:1521:orcl | |
username: rest_test | |
password: rest_test | |
jpa: | |
database-platform: org.hibernate.dialect.Oracle10gDialect | |
database: ORACLE | |
openInView: false | |
show_sql: true | |
generate-ddl: false | |
hibernate: | |
ddl-auto: none | |
naming-strategy: org.hibernate.cfg.EJB3NamingStrategy | |
properties: | |
hibernate.cache.use_second_level_cache: true | |
hibernate.cache.use_query_cache: false | |
hibernate.generate_statistics: false | |
hibernate.cache.region.factory_class: org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment