Last updated by azeckoski 2 years ago
Install using the standard grails-plugin method.
Make sure you remove or comment out the following line from your project
application.properties file or you will get class conflicts.
Last updated by graemerocher 2 years ago
A plugin that installs Hibernate as the JPA provider and is designed to be used in conjunction with the
GORM-JPA plugin.
To use this plugin you need to first install it with:
grails install-plugin hibernate-jpa-provider
And then specify the Hibernate dialect to use for your environment by editing
grails-app/conf/DataSource.groovy for example:
hibernate {
dialect = "org.hibernate.dialect.MySQL5Dialect"
…
}To get GORM dynamic methods then install the GORM-JPA plugin:
grails install-plugin gorm-jpa
Last updated by admin 2 years ago
Last updated by admin 2 years ago