Grails SQL Server Express
我需要一些有关设置 Grails 以与 SQL Server Express 一起使用的帮助。我知道我必须更改数据源,但我不确定到底该怎么做,并且在网络上找不到更新的信息。
I would like some help about setting Grails to work with SQL Server Express. I know I have to change the datasource, but I'm not sure exactly what to do, and couldn't find updated information on the web.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要更改
grails-app/conf/DataSource.groovy
中的数据源设置。您需要确保 SQL Server JDBC 驱动程序位于您的类路径上,方法是将其复制到
grails 应用程序的 lib
目录,或在BuildConfig.groovy
中将其配置为运行时依赖项You need to change the datasource settings in
grails-app/conf/DataSource.groovy
You'll need to make sure that the SQL Server JDBC driver is on your classpath either by copying it to the
lib
directory of the grails application, or configuring it as a runtime dependency inBuildConfig.groovy