类ActionType {
static expose = 'action-type'
String name
String description
static constraints = {
name blank: false, unique: true
}
静态映射= { id generator:' increment',column:' id' } }
点击http://localhost:8090/api/v1.0/action-type
这会出现以下错误:
HTTP CODE:500
回复:{ "成功":错误, " message":"未找到实体null" }
答案 0 :(得分:0)
您是否在没有 v1.0 的情况下尝试过?此外,您需要确保您的上下文'是正确的。一般情况下,如果您的应用被称为“foo'”,那么grails将为您提供类似于
的localhost api http://localhost:8090/foo
所以使用插件的方式是
http://localhost:8090/foo/api/action-type
(它将为您提供当前在您的数据库中的操作类型列表)
文档为here。