如何使用注解修改WSDL的相应信息

//服务名称   命名空间
@WebService(name = "meidInfoService", targetNamespace = "http://www.chinatelecom.hub.com")
public interface MeidInfoService {

@WebResult(name="out")//返回参数根目录名称
@WebMethod(operationName="exchange")//响应方法名称
                                                                //参数名称                命名空间
String queryMeidInfo(@WebParam(name = "in0",targetNamespace="http://www.chinatelecom.hub.com") String text);
}
//实现的接口名     
@WebService(endpointInterface = "asiainfo.ws.priceprotection.service.MeidInfoService", portName = "meidInfoServicePort", serviceName = "meidInfoService", targetNamespace = "http://www.chinatelecom.hub.com")
@Service("meidInfoService")
public class MeidInfoServiceImpl implements MeidInfoService {
@Override
@AsiaService(name = "queryMeidInfo")
public String queryMeidInfo(String text) {}
}

你可能感兴趣的:(WebService,cxf,wsdl,webservice)