我要将 JHipster 应用程序部署到 Wildfly (v. 9.0.2) 服务器,并且需要使用 JNDI 数据源。
基本的连接设置非常简单:我在 Wildfly 中设置了新的数据源以standalone.xml
模仿开箱即用ExampleDS
的. 现在,效果很好。application-dev.yml
DatabaseConfiguration.java
问题是application-xxx.yml
文件还包含 JPA 配置,我不知道将其粘贴到 Wildfly 的哪个位置(我猜它必须在 Wildfly 中)。
更准确地说,我不知道将以下 JPA 参数移到哪里:
jpa:
database-platform
database
openInView
show_sql
generate_ddl
hibernate:
ddl-auto
naming-strategy
properties:
hibernate.cache.use_second_level_cache
hibernate.cache.use_query_cache
hibernate.generate_statistics
hibernate.cache.region.factory_class
我知道 Wildfly 建议在 persistence.xml 中定义它,在这种情况下,我可以将它放入项目中吗?
先感谢您。