已经定义了带有注释@WebService的Java 接口 编译了运行良好的代码
例子:
@WebService
public interface HelloWorldIfc{
现在我尝试将端点接口定义为
@WebService (endpointInterface = "com.ws.HelloWorldIfc")
public interface HelloWorldIfc{
这也编译得很好
那么-我应该在接口上还是在实现类上定义端点接口?
这个属性有什么用吗?它的目的是什么?
如果我不定义它会发生什么 - 我会失去什么?
谢谢,
萨蒂什