我正在使用带有 rest api 和 gson 视图的 grails 3.3.0。我有以下设置...
领域类
package foo
@Resource(uri="/api/bars", readOnly = false, formats = ['json', 'xml'])
class Bar{
String firstName
String lastName
}
控制器:
package foo
class BarController extends RestfulController<Building>{
def show(){
respond Bar.get(params.id)
}
}
_bar.gson:
import foo.Bar;
model {
Bar bar
}
json {
name bar.firstName
}
_show.gson:
import foo.Bar;
model {
Bar bar
}
json g.render(template:"bar", model:[bar:bar])
目录布局:
/grails-app/views/
-----------------bar/
--------------------_bar.gson
--------------------_show.gson
这在,期间失败build
,并出现以下错误:test
compile
war
Execution failed for task ':compileGsonViews'.
foo_bar_show_gson: 3: unable to resolve class foo.Bar
我遵循了文档,但我无法解决这个问题。请帮忙!