如何在运行 Grails App 时为嵌入式 Tomcat 指定 Java 选项(系统属性)?
具体来说,我希望开发我的 grails 应用程序以连接到由 tnsnames.ora 文件定义的 Oracle 数据库。我的 tnsnames.ora 文件位于我的 PC 上的 c:\drivers\Network\ 中。当我通过“grails run-war”运行 grails 应用程序时,tnsnames.ora 文件中定义的数据库连接字符串似乎没有被选取:
grails prod run-war -Dserver.port=62215 -Doracle.net.tns_admin=C:\drivers\Network\
看来 oracle.net.tns_admin 的名称-值对没有传递到嵌入式使用的 JVM Grails 1.2.0 附带的 Tomcat。如果不是,指定它的正确方法是什么,或者将任何 JAVA_OPTS 传递给底层 JVM?
Specifically, I want to have my grails app under development to connect to an Oracle db defined by an tnsnames.ora file. I have the tnsnames.ora file located in c:\drivers\Network\ on my PC. When I run the grails app via "grails run-war", the db connection string defined in the tnsnames.ora file doesn't seem to be picked up:
grails prod run-war -Dserver.port=62215 -Doracle.net.tns_admin=C:\drivers\Network\
It seems the name-value pair of oracle.net.tns_admin is not being passed to the JVM used by the the embedded Tomcat that comes with Grails 1.2.0. If not, what is the proper way of specifying it, or pass any JAVA_OPTS to the underlying JVM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您最好在 Grails 启动脚本 (%GRAILS_HOME%/bin/grails.bat) 中设置 JAVA_OPTS。请参阅此链接了解例子。
You're best off setting your JAVA_OPTS in the Grails startup script (%GRAILS_HOME%/bin/grails.bat). See this link for an example.