我正在使用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
在这里,我得到了错误的值。如何获得确切的值。