0

我有一个非常简单的 Sring MVC Rest Service 在我的 Mac 上本地运行。(例如见这里:http ://www.mkyong.com/spring-mvc/spring-3-rest-hello-world-example/ )。我可以使用 Poster 或通过 CURL 访问此 REST 服务,一切都恢复正常。我尝试通过 Eclipse 中的 java 访问它,它返回 403。这是我在下面尝试使用的代码...

如果我编译这个类并从我的终端运行它,它也会返回正常。它只是从 Eclipse 中返回 403。这个问题似乎只发生在 localhost/127.0.0.1 因为我可以点击http://www.google.com就好了。我以前从未遇到过这个问题。关于为什么我会从 Eclipse 中获得 403 的任何想法?任何可能需要设置的偏好?

package com.server;

    import org.springframework.web.client.RestTemplate;

    public class Main {

        public static void main(String[] args) {
            RestTemplate rt = new RestTemplate();
            String test = rt.getForObject("http://127.0.0.1:8080/service/model/1", String.class);
            System.out.println(test);
        }
    }
4

0 回答 0