Merge pull request #321 from MacL3an/patch-3
Added instructions about removing Hibernate dialect
This commit is contained in:
@@ -189,6 +189,13 @@ spring:
|
|||||||
password: admin
|
password: admin
|
||||||
driverClassName: com.mysql.jdbc.Driver
|
driverClassName: com.mysql.jdbc.Driver
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Also, make sure you are not setting the Hibernate dialect explicitly, in other words remove any lines similar to:
|
||||||
|
|
||||||
|
```
|
||||||
|
hibernate.dialect: {some none MySQL dialect}
|
||||||
|
```
|
||||||
|
|
||||||
On some systems, it might be necessary to override hibernate's default naming strategy. The naming strategy must be set using spring.jpa.hibernate.physical_naming_strategy.
|
On some systems, it might be necessary to override hibernate's default naming strategy. The naming strategy must be set using spring.jpa.hibernate.physical_naming_strategy.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@@ -299,6 +306,8 @@ spring:
|
|||||||
driverClassName: com.mysql.jdbc.Driver
|
driverClassName: com.mysql.jdbc.Driver
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Also, make sure you are not setting the Hibernate Dialect explicitly, see more details in the section about MySQL.
|
||||||
|
|
||||||
## Running hapi-fhir-jpaserver directly from IntelliJ as Spring Boot
|
## Running hapi-fhir-jpaserver directly from IntelliJ as Spring Boot
|
||||||
Make sure you run with the maven profile called ```boot``` and NOT also ```jetty```. Then you are ready to press debug the project directly without any extra Application Servers.
|
Make sure you run with the maven profile called ```boot``` and NOT also ```jetty```. Then you are ready to press debug the project directly without any extra Application Servers.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user