我在以下位置设置了以下JAXRS服务:
@Path(value="/validationService")
public class ValidationService {
@GET
@Produces(value="text/plain")
@Path(value="{token}")
public String getPropety(@PathParam("token") String token) {
String status = AuthenticationManager.getInstance().getTokenStatus(token);
return status;
}
}
如果我点击了网址,我会在屏幕上收到正确的回复。我怎样才能在后端消耗这笔资源?我使用Tersey jar和Cient / CLientBuilder / WebTarget过程使用TOMCAT设置了这个,但这似乎不适用于WebsphereApplicationServer 8.5。任何信息表示赞赏。
答案 0 :(得分:1)
答案: JAX-RS Jersey Client on Websphere 8.5
我使用了不正确的库来执行这些操作。 我正在使用:javax.ws.rs构建客户端,当我应该使用时:org.apache.wink