如何在@pathparam中处理语言环境字符串

时间:2018-12-27 13:18:23

标签: microservices

我正在使用MSF4J jar开发mircoservices。在这里,我有一项服务,该服务将通过pathparam接收语言环境字符串作为输入。

例如。

http://localhost:8080/myFirstMicroservice/Director de 1ª Linha

在Java中

@GET
@path(/getLocation)
public Response getLocation(@PathParam("location") String location) {
System.out.println("Location: " + location);
}

输出看起来像

Director de 1` Linha

在这里,我得到了错误的值。如何获得确切的值。

0 个答案:

没有答案