我的环境:
java version "1.6.0_38"
Grails 2.1.1
grails create-app test
cd test<br>
grails create-controller com.test.Test
中没有特殊UrlMapping
配置。
com.test.TestController
:
package com.test
class TestController {
def getA(){
def ret = []
println "in getA"
render ret
}
def index() {
println "in index"
render view:"index"
}
}
grails-app/test/index.gsp:
<html>
<body> hello </body>
</html>
当我尝试访问 [ http://HOSTNAME/PRJNAME/test/index
]时
,我想会发生这种情况:
HTML:
<html> <body> hello </body> </html>
控制台:
在索引中
但是,事情不是那样的,实际上是这样的:
HTML:
[]<html> <body> hello </body> </html>
控制台:
在 getA
的索引中
为什么??