Skip to content

Instantly share code, notes, and snippets.

@anataliocs
Created May 15, 2015 19:11
Show Gist options
  • Save anataliocs/b43875abd9339bb070ea to your computer and use it in GitHub Desktop.
Save anataliocs/b43875abd9339bb070ea to your computer and use it in GitHub Desktop.
Oracle config for jHipster Spring Boot App
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