jhipster Oracle数据库连接

3

我好像无法让Liquibase在Oracle数据库上运行。

我的application-dev.yml文件中有以下内容:

spring:
  profiles: dev
  datasource:
    dataSourceClassName: oracle.jdbc.pool.OracleDataSource
    url: jdbc:oracle:thin:@localhost:1521:orcl
    username: rest_test
    password: rest_test

  jpa:
    database-platform: org.hibernate.dialect.OracleDialect
    database: ORACLE
    openInView: false
    show_sql: true
    generate-ddl: false
    hibernate:
    ddl-auto: none

但我收到了:
[DEBUG] com.steve.config.DatabaseConfiguration - Configuring Datasource
[ERROR] com.zaxxer.hikari.util.PropertyBeanSetter - Property url is does not exist on target    class class oracle.jdbc.pool.OracleDataSource

这很奇怪,因为该类似乎具有一个url属性:

[btuser@localhost pool]$ strings OracleDataSource.class | grep -i seturl
setURL

有什么想法吗?

谢谢。

1个回答

4

已经修复了,这个配置现在有效:

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

最新的JHipster(3.4.1+)不再需要这些更改。 - chrismarx

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接