I’m quite new with Grails and trying to connect my application to my local mysql database. Since I’m working with the latest version of Grails, I couldn’t really find a lot of documentation to help me out. Is there any clear documentation which could guide me in the right direction?
(I’ve tried the official documentation, but it seems to be out of date)
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Datasource configuration in Grails 3 now is done also via the grails-app/conf/application.yml
file. In a default project it is located in the final section of the file (starting with dataSource:
). The docs as of 2015-08-01 still explain the old, v2, syntax. But for the developer this should be seen just as a change in syntax (from a Groovy DSL to a YAML). E.g.:
dataSource: pooled: true jmxExport: true driverClassName: com.mysql.jdbc.Driver dialect: org.hibernate.dialect.MySQL5InnoDBDialect username: sa password: environments: development: dataSource: dbCreate: create-drop url: jdbc:mysql://liveip.com/liveDb
Add the mysql deps as runtime
in the dependencies
of your build.gradle
. E.g.
runtime 'mysql:mysql-connector-java:5.1.36'
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0