postman可以正常调用 但返回报404(亲测)

今天在测试本地接口时,使用postman调用后台可以正常走到断点,也可以正常走到return,但是在postman接收到的返回值如下:

{
“timestamp”: “2021-08-18T11:46:43.469+0000”,
“status”: 404,
“error”: “Not Found”,
“message”: “No message available”,
“path”: “/****/*****”
}

controller类上的注解为@Controller,改为@RestController就可以了。

你可能感兴趣的:(java,postman,java,测试工具)