Skip to content

Commit

Permalink
Merge pull request hapifhir#321 from MacL3an/patch-3
Browse files Browse the repository at this point in the history
Added instructions about removing Hibernate dialect
  • Loading branch information
patrick-werner committed Apr 20, 2022
2 parents 3a880ee + 1a52897 commit 51cf27a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,13 @@ spring:
password: admin
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.

```yaml
Expand Down Expand Up @@ -299,6 +306,8 @@ spring:
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
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.

Expand Down

0 comments on commit 51cf27a

Please sign in to comment.