[Grails] Grails启动路径怎么配置的?

yonglin4605 2013-01-17
用 grails run-app 启动,默认是:
http://localhost:8080/hello/ 这个路径
怎么才能配置成: http://localhost:8080/ 使用根路径啊?

谢谢了
oksonic 2013-03-23
一般情况下是在发布应用后就可以使用了,要在开发模式下使用还真不知道。
daixiaowei 2013-07-16
可以在conf文件夹下面,写一个URLMapping的groovy文件,配置大致如下:
class UrlMappings {
      static mappings = {
		"/"(controller:"hello",action:"index")//action 需要看下你那个首页在helloController下面的闭包。
	}
}
kwakhyok 2013-07-26
不用那么麻烦。
在conf/Config.groovy里加入下列语句:

grails.app.context = "/"
Global site tag (gtag.js) - Google Analytics