我正在开发的grails应用程序可以运行MySQL或SQL Server。我想在application.properties文件中添加一个新属性说
database.type = MySQL //或者它可能是SQLSERVER
如何在Datasource.groovy中获取此属性,以便如果它是MySQL我连接到MySQL服务器或者它是SQLSERVER我连接到SQL Server?
这是正确的方法吗?我该怎么办?
编辑:阅读并搜索选项后,我想到了以下方式解释。 我在/ grails-app / conf /文件夹中创建了config.properties文件。
driverClassName = com.microsoft.sqlserver.jdbc.SQLServerDriver
dataSource.url = jdbc:sqlserver://localhost:1433;databaseName=testDB
dataSource.username = sa
dataSource.password = sa
还更新了Config.groovy
grails.config.locations = ["classpath:config.properties"]
但我得到以下错误
无法加载指定的配置位置classpath:config.properties:无法打开类路径资源[config.properties],因为它不存在
但是如果使用
grails.config.locations = ["file:E:/workspace/SpringSource2.3.3/GRAILS_PRO/config.properties"]
应用程序启动并能够连接到数据库。我不想使用静态文件路径。使用classpath时出了什么问题?
对于'run-app'和'war'模式都有同样的问题,即同一文件不存在错误。
第二次编辑:
在使用classpath并且无法使其工作之后非常沮丧之后,我使用了环境属性。由于服务器将定义CATALINA_HOME,因此我使用以下内容构建外部配置文件的路径。
def CATALINA_HOME = "CATALINA_HOME"
def CONFIG_FILE_NAME = "db_config.properties"
if(!grails.config.locations || !(grails.config.locations instanceof List)) {
grails.config.locations = []
}
if(System.getenv(CATALINA_HOME)) {
def fullPath = System.getenv(CATALINA_HOME) + File.separator + "webapps" + File.separator + "${appName}" + File.separator + "WEB-INF" + File.separator + "classes" + File.separator + CONFIG_FILE_NAME
grails.config.locations << "file:" + fullPath
} else {
println "Missing configuration!"
}
以上解决方案是Tomcat特有的。我真的很想看到classpath版本正常工作!
谢谢。 问候, 杰伊钱德兰。
答案 0 :(得分:0)
将它放在运行tomcat实例的用户的主目录中,或者应该为你的应用程序创建一个.grails目录,把它放在那里