1

我写了一个 resteasy-spring 服务:

    @Controller
    @RequestMapping("/abr/asd")
    @Path("/ab/ac")
    public class JobSchedulerService {

        private static final Logger LOGGER = Logger.getLogger(JobSchedulerService.class);

        @GET
        @Path("/abc/{param}")
        public String scheduleJobs(@PathParam("param") String name) {
            return "Success";
        }
    }

当我尝试从浏览器调用此服务时,响应是正确的:

http://localhost:8080/ControlAppWeb/rest/ab/ac/abc/name
  • Success

但是当我尝试从 Rest Client API 调用它时,它会返回一个网页,该网页实际上是 Web 应用程序的欢迎页面,我在其中包含了 rest 服务:

         try {
         URL url = new URL("http://localhost:8080/WebApp/rest/ab/ac/abc/name");
         HttpURLConnection conn = (HttpURLConnection) url.openConnection();

         conn.setRequestMethod("GET");
         conn.setRequestProperty("Accept", "application/json");

         if (conn.getResponseCode() != HttpURLConnection.HTTP_OK) {
         throw new RuntimeException("Failed! " + conn.getResponseCode());
         }
         BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
         String output;

         System.out.println("Output from Server is: ");
         while ((output = br.readLine()) != null) {
         System.out.println(output);
         }
         conn.disconnect();     
         } catch (MalformedURLException e) {        
         e.printStackTrace();
         } catch (IOException e) {      
         e.printStackTrace();       
         }

请帮忙,关于我从 Java API 调用时哪里出错了

此外:我尝试从服务中删除控制器和请求映射注释,浏览器调用仍然有效,而 java rest 客户端没有。奇怪的是,即使我将 url 修改为任何随机的(在 java 客户端中),不包括初始部分(http://localhost:8080/ControlAppWeb),输出保持不变并且永远不会抛出错误......

4

1 回答 1

0

这种情况下的问题似乎是由于在控制应用程序的 web.xml 中配置的“过滤器”引起的。因此,对 /* 的所有请求都被重定向到欢迎页面。从 web.xml 文件中删除过滤器配置解决了该问题,并且 Java Rest API 的响应与来自浏览器的调用的响应“成功”相同。虽然我仍然不清楚为什么过滤器不会影响来自浏览器的请求,但会影响来自 Java 客户端的请求。无论如何,希望这可以帮助其他可能遇到类似问题的人。

于 2012-11-18T17:11:26.133 回答