博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Grails连接mysql数据库
阅读量:4979 次
发布时间:2019-06-12

本文共 1040 字,大约阅读时间需要 3 分钟。

  1.Grails在连接mysql数据库是如果出现type=InnDe什么什么的错时,最好在将dataSource里面的方言(dialect)的值修改成

1 dataSource {2     pooled = true3     driverClassName = "com.mysql.jdbc.Driver"4     username = "root"5     password = "root"6     dialect = org.hibernate.dialect.MySQL5InnoDBDialect  7 }

  这样就可以顺利连接数据库

Grails - DataSource.groovy

1 dataSource { 2     pooled = true 3     driverClassName = "com.mysql.jdbc.Driver" 4     username = "root" 5     password = "root" 6     dialect = org.hibernate.dialect.MySQL5InnoDBDialect 7 } 8 hibernate { 9     cache.use_second_level_cache = true10     cache.use_query_cache = false11     cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'12 }13 // environment specific settings14 environments {15     development {16         dataSource {17             dbCreate = "update" // one of 'create', 'create-drop', 'update', 'validate', ''18             url = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8"19         }20     }21 }

 

转载于:https://www.cnblogs.com/duwenlei/p/3668253.html

你可能感兴趣的文章
前端利器躬行记(6)——Fiddler
查看>>
Intellij Idea新建web项目(转)
查看>>
用JAVA编写浏览器内核之实现javascript的document对象与内置方法
查看>>
centos iptables
查看>>
寻找二叉查找树中比指定值小的所有节点中最大的那个节点
查看>>
如何设置输入框达到只读效果
查看>>
RT3070 USB WIFI 在连接socket编程过程中问题总结
查看>>
MIS外汇平台荣获“2013年全球最佳STP外汇交易商”
查看>>
LeetCode 题解之Add Digits
查看>>
hdu1502 , Regular Words, dp,高精度加法
查看>>
SpringBoot在idea中的热部署配置
查看>>
MyEclipse连接SQL Server 2008数据库的操作方法
查看>>
JS验证图片格式和大小并预览
查看>>
laravel5.2 移植到新服务器上除了“/”路由 ,其它路由对应的页面显示报404错误(Object not found!)———新装的LAMP没有加载Rewrite模块...
查看>>
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>