gpt4 book ai didi

rest - 向 Grails restfulcontroller 添加功能

转载 作者:行者123 更新时间:2023-12-02 15:09:18 26 4
gpt4 key购买 nike

我有一个非常简单的 restful Controller ,它看起来像这样:

class PersonController extends RestfulController<Person> {

static responseFormats = ['json', 'xml']

PersonController() {
super(Person)
}
}

但是,现在我想为此添加一个搜索选项。使这成为可能的 Grails 方法是什么?

我想添加以下内容:
def search(Map params) {
println params
}

但这会使 Grails (2.3) 崩溃(| Error Fatal error during compilation org.apache.tools.ant.BuildException: Compilation Failed (Use --stacktrace to see the full tr​​ace))。

那么添加这个的正确方法是什么?我正在寻找可以使用 http://localhost:8080/foo/person/search?q=erik 调用的解决方案

这是我的 UrlMappings:
static mappings = {
"/$controller/$action?/$id?(.${format})?"{
constraints {
// apply constraints here
}
}


"/rest/persons"(resources:'Person')

我已将以上内容更改为:
def search() {
println params
}

这不再给出编译错误,但我仍然收到此错误:
TypeMismatchException occurred when processing request: [GET] /declaratie-web/rest/medicaties/search - parameters:
q: erik
Provided id of the wrong type for class nl.Person. Expected: class java.lang.Long, got class java.lang.String. Stacktrace follows:
org.hibernate.TypeMismatchException: Provided id of the wrong type for class nl.Person. Expected: class java.lang.Long, got class java.lang.String

我还发现我如何调用 Controller 并不重要:
http://localhost:8080/foo/person/search?q=erik
http://localhost:8080/foo/person/search222?q=erik
http://localhost:8080/foo/person/search39839329?q=erik

一切都因上述错误而失败,所以似乎我的方法被忽略了(可能是由我的 URLmapping 引起的?)

最佳答案

这样做你真的不是 RESTful。 q应该只是索引操作的参数。您可以覆盖该方法以包含您的功能。

def index(Integer max) {
params.max = Math.min(max ?: 10, 100)
def c = Person.createCriteria()
def results = c.list(params) {
//Your criteria here with params.q
}
respond results, model:[personCount: results.totalCount]
}

关于rest - 向 Grails restfulcontroller 添加功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19360559/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com