我不精通Java。这是Web服务,我正在尝试实现-一个基本示例,并且我面临编译错误。 我不确定我在这里想念什么。
这是代码。
package com.joshis1.jaxws;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@WebService
@SOAPBinding(style = Style.DOCUMENT)
public interface IwebServiceInterface {
@WebMethod String sayHello(String name);
}
接下来,实现接口
package com.joshis1.jaxws;
import javax.jws.WebService;
@WebService(endpointInterface = "com.joshis1.jaxws")
public class webServiceImpl implements IwebServiceInterface {
@Override
public String sayHello(String name)
{
return "Hello Shreyas " + name;
}
}
接下来,发布端点的主要类
package com.joshis1.publisher;
import javax.xml.ws.Endpoint;
import com.joshis1.jaxws.*;
public class WebServicePublisher {
public static void main(String[] args) {
Endpoint.publish("http://localhost:8888/webservice/helloworld", new webServiceImpl());
}
}
接下来,一个非常基本的问题-我需要在这里安装Web服务器吗?
答案 0 :(得分:1)
您将endpointInterface
指向包裹:
@WebService(endpointInterface = "com.joshis1.jaxws")
它需要引用您的界面:
@WebService(endpointInterface = "com.joshis1.jaxws.IwebServiceInterface")
看看错误在说什么
找不到class:com.joshis1.jaxws