所以我有一个使用Camel的REST Web服务。
它的工作正常,但如果我用后缀调用我的URI,我会得到相同的响应,而不是404.
休息配置:
restConfiguration()
.component("restlet")
.bindingMode(RestBindingMode.json)
.dataFormatProperty("prettyPrint", "true")
.contextPath(contextPath).host(host).port(port);
rest("/ressource") .description("ressource")
.consumes("application/json") .produces("application/json")
.get().outType(Ressource.class)
.to("bean:ressourceImpl?method=getRessource")
示例:
本地主机:8090 /服务/的ressource
返回我的资源
本地主机:8090 /服务/ ressource85468461569
返回我的资源
这是正常的吗?我认为它应该只返回404