当前位置: 首页 > 知识库问答 >
问题:

Spring REST:不支持请求方法“GET”

方树
2023-03-14

我试图使一个SpringRest程序但我遇到以下错误当我试图调用GET方法为我的一个元素

出现意外错误(类型=方法不允许,状态=405)。不支持请求方法“GET”

这是我的控制器代码:

@RestController
@RequestMapping("/company/flight")
public class FlightController
{
private static final String template = "Hello, %s!";

@Autowired
private FlightRepo repo;

@RequestMapping("/greeting")
public String greeting(@RequestParam(value="name", defaultValue="World") String name) {
    return String.format(template, name);
}

@RequestMapping( method= RequestMethod.GET)
public FlightList getAll(){
    return repo.getAll();
}

@RequestMapping(value = "/flight/{id}", method = RequestMethod.GET)
public ResponseEntity<?> getById(@PathVariable int id){

    Flight fl = repo.findById(id);
    if (fl==null)
        return new ResponseEntity<String>("Flight not found",HttpStatus.NOT_FOUND);
    else
        return new ResponseEntity<Flight>(fl, HttpStatus.OK);
}

@RequestMapping(method = RequestMethod.POST)
public Flight create(@RequestBody Flight fl){
    repo.save(fl);
    return fl;

}

@RequestMapping(value = "/flight/{id}", method = RequestMethod.PUT)
public Flight update(@RequestBody Flight fl) {
    System.out.println("Updating flight ...");
    repo.update(fl.getFlightId(),fl);
    return fl;

}

@RequestMapping(value="/{id}", method= RequestMethod.DELETE)
public ResponseEntity<?> delete(@PathVariable int id){
    System.out.println("Deleting flight ... " + id);
    repo.deleteFlight(id);
    return new ResponseEntity<User>(HttpStatus.OK);

}


@RequestMapping("/{flight}/id")
public String name(@PathVariable int id){
    Flight result=repo.findById(id);
    System.out.println("Result ..." + result);

    return result.getAirport();
}

@ExceptionHandler
@ResponseStatus(HttpStatus.BAD_REQUEST)
public String flightError(Exception e) {
    return e.getMessage();
}
}

我已经尝试了一些解决方案,但似乎没有任何效果。我看到他们中的大多数都在处理POST方法,但我只有一个POST方法,它与自定义值无关。

错误发生在此方法调用上

@RequestMapping(value = "/flight/{id}", method = RequestMethod.GET)
public ResponseEntity<?> getById(@PathVariable int id)
{

Flight fl = repo.findById(id);
if (fl==null)
    return new ResponseEntity<String>("Flight not found",HttpStatus.NOT_FOUND);
else
    return new ResponseEntity<Flight>(fl, HttpStatus.OK);
}

我是这样称呼这个方法的:

show(()-> System.out.println(flightclient.getById(20)));

这里是我称之为

public class Main {
private final static FlightClient flightclient=new FlightClient();
public static void main(String[] args) {
    RestTemplate restTemplate=new RestTemplate();
    flightclient.delete(20);
    Flight fly=new Flight(20,"Tokyo","Paris",50,"2017-07-01");
    try
    {
        show(()-> System.out.println(flightclient.create(fly)));
        show(()->{
            FlightList res=flightclient.getAll();
            for(Flight u:res){
                System.out.println(u.getFlightId()+" : "+u.getAirport());
            }
        });

        show(()-> System.out.println(flightclient.getById(20)));
    }catch(RestClientException ex){
        System.out.println("Exception ... "+ex.getMessage());
    }
}

其他方法都有效。如何修复此错误?非常感谢。

共有1个答案

东方化
2023-03-14

可能您正在尝试发送一个请求到这个url/company/air/{id}。您在类级别上有一个@刚需映射,当您指定类级别注释时,url将是相对的。所以getById方法的url是/company/air/{id}

getById的映射更改为@RequestMapping(value=“/{id}”,method=RequestMethod.GET),然后您可以向/company/flight/{id}发送请求。

@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public ResponseEntity<?> getById(@PathVariable int id)
{

    Flight fl = repo.findById(id);
    if (fl==null)
        return new ResponseEntity<String>("Flight not found",HttpStatus.NOT_FOUND);
    else
        return new ResponseEntity<Flight>(fl, HttpStatus.OK);
}
 类似资料:
  • 我正在编写一个控制器来处理来自AJAX的帖子。我一直收到一个错误,那篇文章不受支持。我以前在尝试创建后控制器方法时从未遇到过以下错误,我希望有人能发现我在哪里搞砸了。 这是我为控制控制器中的帖子而编写的方法: 使用JQuery 1.10,这是请求它的Ajax调用: 我知道POST地址是正确的,因为将它转换成GET请求就可以了。此外,我还编写了其他POST请求,它们在同一个控制器类中也能正常工作。任

  • login.jsp 用户列表.jsp AppController.java 有2页:login.jsp-起始页,其中包括与登录和密码填充的形式-userlist.jsp结果列表“显示数据库中所有用户持久化”..首先显示登录页面,当我单击提交按钮时,我得到了这个错误:org . spring framework . web . servlet . pagenotfound-不支持请求方法“POST”

  • 我试图在这里输入代码`@RequestMapping(value=“/test”,method=RequestMethod.POST),但错误代码为 网状物xml是 springmvc.xmlindex.jsp I input submit botton brower为错误HTTP Status 405-请求方法'GET'不受支持类型状态报告消息请求方法'GET'不受支持描述指定的HTTP方法不允

  • 下面是我的方法 当调用GET request时,它的工作很好,但是当我们调用POST request和request payload checkout_token=xxxx时,我得到以下错误 编辑 甚至我尝试删除所有参数,但仍然没有运气到目前为止。

  • 我有Java控制器: 并遇到以下问题:警告14068--[nio-8080-exec-3].w.s.m.s.defaultHandlerExceptionResolver:Resolved[org.springframework.web.httpRequestMethodNotSupportedException:Request method'DELETE'not support]它发生在我发送删

  • 我刚刚开始学习Java Spring Boot for REST API开发。在下面的代码中,GET方法可以正常工作,但POST不能。 在Postman应用程序中使用as 错误 在日志中我可以看到, maven的Java和springboot版本,

  • 日志将输出以下内容。 2017-10-10 14:49:40.946警告5750---[nio-8080-exec-4]O.s.web.servlet.PageNotFound:不支持请求方法“Get”

  • 我刚刚从graphdb 8.4.1升级到graphdb 8.8.1,效果非常好。然而,我无法通过sparql访问triple store并获取更多的[WARN]2019-03-19 21:08:20090[http-nio-7200-exec-8 | o.s.w.s.PageNotFound]请求方法“GET”不受支持 我怎么才能打开它? 提前感谢!