请求http://localhost:8080/restful/person?id=1提示请求资源[/restful/restful/person]不可用

请求http://localhost:8080/restful/person?id=1提示请求资源[/restful/restful/person]不可用

问题描述:

在json序列化章节增加findByPersonId中无法通过请求http://localhost:8080/restful/person?id=1获取返回值。提示请求资源[/restful/restful/person]不可用。

相关截图:

报错信息

https://img1.sycdn.imooc.com//climg/618155e6099da75322111282.jpg

tomcat设置

https://img1.sycdn.imooc.com//climg/6181564109b38d4712510850.jpg

相关代码:

//RestfulController.java
package com.imooc.restful.controller;

import com.imooc.restful.entity.Person;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping("/restful")
public class RestfulController {
    @GetMapping("/request")
//    @ResponseBody
    public String doGetRequest() {
        return "{\"message\": \"getting...\"}";
    }

    @PostMapping("/request")
//    @ResponseBody
    public String doPostRequest(){
        return "{\"message\": \"inserting...\"}";
    }

    @PutMapping("/request")
//    @ResponseBody
    public String doPutRequest(){
        return "{\"message\": \"updating...\"}";
    }
    @DeleteMapping("/request")
//    @ResponseBody
    public String doDeleteRequest(){
        return "{\"message\": \"deleting...\"}";
    }
    @GetMapping("/person")
    public Person findByPersonId(Integer id){
        Person person = new Person();
        if(id == 1){
            person.setName("person1");
            person.setAge(20);
        }
        else if(id == 2){
            person.setName("person2");
            person.setAge(22);
        }
        return person;
    }
}


正在回答

登陆购买课程后可参与讨论,去登陆

1回答

同学你好,根据浏览器报错路径显示,有两个restful

https://img1.sycdn.imooc.com//climg/6181eb6c0931a5e105550227.jpg

同学可以检查下idea的如下位置是否是/restful,如果是,建议同学改成/试试,如下

https://img1.sycdn.imooc.com//climg/6181ebaa0971a55c10480646.jpg

祝学习愉快~

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师