Spring JAX-RS:终点无效

时间:2018-05-31 10:43:26

标签: spring spring-boot spring-rest

我遵循了这篇文章中定义的相同步骤:https://java2blog.com/restful-web-services-jaxrs-crud-example/#comment-11493。我没有更改我本地的任何文件。但最后,http://localhost:8080/JAXRSJsonCRUDExample/rest/countries说404问题。 http://localhost:8080/JAXRSJsonCRUDExample/在浏览器中显示“Hello World”。

1 个答案:

答案 0 :(得分:0)

如果以下情况有效,则配置正确

http://localhost:8080/JAXRSJsonCRUDExample/

然后下面的网址给出404问题(文件/资源​​未找到)

http://localhost:8080/JAXRSJsonCRUDExample/rest/countries

这意味着没有服务与上述网址匹配。

请正确检查路径(如果需要,请在相应方法中添加@Path("")