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

有什么想法吗?

谢谢

4

1 回答 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
于 2014-05-02T06:24:58.617 回答