当我尝试调用服务方法并在某些条件之前检查时,我遇到了问题
@Path("service")
public class MyService {
@POST
@Path("process")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.TEXT_PLAIN)
public static Response process(@Context HttpServletRequest request, @FormParam("text") final String text) throws JSONException, IOException {
boolean someCondition = true; // for example
System.out.println("I'm here"); //*
if (!someCondition) {
return MyClass1.process(request, text);
} else {
return MyClass2.process(request, text);
}
}
在MyClass1和MyClass2课程中,我有下一个方法签名
public static Response process(@Context HttpServletRequest request, @FormParam("text") final String text) throws JSONException, IOException
我在调用此方法服务时未找到响应,甚至没有打印带*注释的行。
我如何解决这个问题?
答案 0 :(得分:0)
我犯了非常愚蠢的错误静态方法:
public static Response process(@Context HttpServletRequest request, @FormParam("text") final String text) throws JSONException, IOException {