更改grails中的上下文根2

时间:2012-01-04 18:37:20

标签: grails contextroot grails-2.0

我正在将应用程序从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中也做了同样没有成功。任何提示?

由于

3 个答案:

答案 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))

可以解决问题。