gpt4 book ai didi

spring - 404 请求资源未找到

转载 作者:可可西里 更新时间:2023-11-01 16:54:18 25 4
gpt4 key购买 nike

我正在将 Spring Framework 与 restful web 服务一起使用,我正在尝试创建一个具有 restful 服务的 API 并使用 get 方法。我创建了一个方法,并试图让它返回一个字符串,但我却收到 404 错误 - 未找到请求的资源。请在下面查看我的代码:

@RestController
@RequestMapping("/test")
public class AreaController {

public RestResponse find(@PathVariable String name, ModelMap model) {
model.addAttribute("movie", name);
return "list";
}
}

我正在使用:localhosr:8080/MyProject/wangdu

最佳答案

出现这个错误是因为你忘记添加
@RequestMapping(value = "/{name}", method = RequestMethod.GET)
在你的查找方法之前:

@RestController
@RequestMapping("/test")
public class AreaController {

@RequestMapping(value = "/{name}", method = RequestMethod.GET)
public RestResponse find(@PathVariable String name, ModelMap model) {
model.addAttribute("movie", name);
return "list";
}
}

关于spring - 404 请求资源未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45768274/

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