我正在将应用程序从grails 1.3.6迁移到2.0,我需要更改其上下文根。如果我没记错的话,在1.3.6中我安装了模板插件并更改了:
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>/newcontextroot</param-value>
</context-param>
我在2.0中也做了同样没有成功。任何提示?
由于
答案 0 :(得分:8)
您可Config.groovy
中的configure上下文:
// grails-app/conf/Config.groovy
grails.app.context = '/newcontextroot'
或application.properties
:
app.context = /newcontextroot
答案 1 :(得分:2)
使用此命令启动grails应用程序
grails -Dapp.context=/ run-app
答案 2 :(得分:0)
在Grails版本3.3.9中,我知道要更改:
project / grails-app / conf / application.yml
添加
(defun find_min ( x y )
(if(< x y)
(+ x 0)
(+ y 0)))
(defun minOfNums()
(loop
(princ "Enter number: ")
(setq a (read))
(princ "Enter number: ")
(setq min (find_min (a (read))))
(terpri)
(when (= a 0) (return a)))
(write min))
可以解决问题。