Grails SQL Server Express

发布于 2024-11-05 03:02:47 字数 93 浏览 5 评论 0原文

我需要一些有关设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

固执像三岁 2024-11-12 03:02:47

您需要更改 grails-app/conf/DataSource.groovy 中的数据源设置。

dataSource {

    // Change the values of these properties to the username, password and hostname
    // for your SQL Server database
    username = "sa"
    password = ""
    url = "jdbc:sqlserver://localhost:1433;databaseName=your_database_name_here"

    driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
    dialect = "org.hibernate.dialect.SQLServerDialect"
}

您需要确保 SQL Server JDBC 驱动程序位于您的类路径上,方法是将其复制到 grails 应用程序的 lib 目录,或在 BuildConfig.groovy 中将其配置为运行时依赖项

You need to change the datasource settings in grails-app/conf/DataSource.groovy

dataSource {

    // Change the values of these properties to the username, password and hostname
    // for your SQL Server database
    username = "sa"
    password = ""
    url = "jdbc:sqlserver://localhost:1433;databaseName=your_database_name_here"

    driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
    dialect = "org.hibernate.dialect.SQLServerDialect"
}

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 in BuildConfig.groovy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文