0
package my.first.rest;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("hello")
public class Hello {

  // This method is called if TEXT_PLAIN is requested
  @GET
  @Produces(MediaType.TEXT_PLAIN)
  public String sayHelloInPlainText() {       
    return "Hello world!";
  }
 http://stackoverflow.com/questions/2893796/create-hello-world-with-restful-web-service-and-jersey
  // This method is called if HTML is requested
  @GET
  @Produces(MediaType.TEXT_HTML)
  public String sayHelloInHtml() {
    return "<html> " + "<title>" + "Hello world!" + "</title>"
        + "<body><h1>" + "Hello world!" + "</body></h1>" + "</html> ";
  }
}

这是我编写的 Web 服务 Restful 的代码。当我使用测试客户端发布时,就会出现这个错误:

IWAB0489E Error when deploying Web service to Axis runtime
  axis-admin failed with  {http://schemas.xmlsoap.org/soap/envelope/}
  Server.userException java.net.ConnectException: Connection refused: connect

我将如何解决它?这仅与 Rest 一起提供,而不与 SOAP 一起提供。

4

1 回答 1

0

您必须下载球衣 [从 sunmicrosystem 实现 REST] 并将这些 jar 包含在您的应用程序中,除此之外您必须相应地修改您的 web.xml。
网上有多个初学者教程 -点击这里

于 2014-01-14T08:07:39.200 回答