datasource.groovy.svn-base
来自「水泵性能参数检测是水泵出厂检验与开发研究的必要手段」· SVN-BASE 代码 · 共 30 行
SVN-BASE
30 行
dataSource { pooled = true url = "jdbc:mysql://localhost/gtunes_ch03" driverClassName = "com.mysql.jdbc.Driver" username = "gtunes" password = "password"}hibernate { cache.use_second_level_cache=true cache.use_query_cache=true cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'}// environment specific settingsenvironments { development { dataSource { dbCreate = "create-drop" // one of 'create', 'create-drop','update' } } test { dataSource { dbCreate = "update" } } production { dataSource { dbCreate = "update" } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?