我想在netbeans中连接mysql和grails。我在用,圣杯version:3.2netbeans:8.2版jdk:1.8操作系统:windows 10如何将我的grails项目与netbeans中的mysql数据库连接起来?我在网上搜索过,但找不到任何方法添加mysql-connector.jar或任何其他进程。我怎样才能解决这个问题?
pw9qyyiw1#
你不应该手动添加它。通常(按惯例)通过添加适当的依赖关系来解决:
dependencies { runtime 'mysql:mysql-connector-java:5.1.29' }
配置可以在grails app/conf/application.groovy或grails app/conf/application.yml中维护更多信息:https://docs.grails.org/latest/guide/conf.html#datasource
1条答案
按热度按时间pw9qyyiw1#
你不应该手动添加它。通常(按惯例)通过添加适当的依赖关系来解决:
配置可以在grails app/conf/application.groovy或grails app/conf/application.yml中维护
更多信息:https://docs.grails.org/latest/guide/conf.html#datasource