2016-05-29 82 views
2

如何讓JBoss使用我提供的.wsdl文件?現在,它會自動生成它。舉例來說,如果我有這樣的接口和類:在JBoss服務器中使用自己的WSDL文件(WIldfly 10.0)

CalculatorWebService

package test.example.ws; 

import javax.jws.WebMethod; 
import javax.jws.WebParam; 
import javax.jws.WebService; 

@WebService 
public interface CalculatorWebService 
{ 
    @WebMethod 
    public double add(@WebParam(name="number")double ... number); 

    @WebMethod 
    public double subtract(@WebParam(name="number")double ... number); 

    @WebMethod 
    public double multiply(@WebParam(name="number")double ... number); 

    @WebMethod 
    public double divide(@WebParam(name="number")double ... number); 
} 

CalculatorWSImpl

package test.example.ws.impl; 

import javax.jws.WebService; 

import test.example.ws.CalculatorWebService; 

@WebService(endpointInterface = "test.example.ws.CalculatorWebService") 
public class CalculatorWSImpl implements CalculatorWebService 
{ 
    public double add(double ... number) { 
     if(number.length == 0) 
      return 0.0; 

     double sum = 0.0; 

     for(double num : number) 
      sum += num; 

     return sum; 
    } 

    public double subtract(double ... number) { 
     if(number.length == 0) 
      return 0.0; 

     double difference = number[0]; 

     for(int i = 1; i < number.length; i++) 
      difference -= number[i]; 

     return difference; 
    } 

    public double multiply(double ... number) { 
     if(number.length == 0) 
      return 0.0; 

     double product = 1.0; 

     for(double num : number) 
      product *= num; 

     return product; 
    } 

    public double divide(double ... number) { 
     if(number.length == 0) 
      return 0.0; 

     double quotient = number[0]; 

     for(int i = 1; i < number.length; i++) 
      quotient /= number[i]; 

     return quotient; 
    } 
} 

有了這個web.xml

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1"> 
    <display-name>WebServices</display-name> 
    <welcome-file-list> 
    <welcome-file>index.jsp</welcome-file> 
    </welcome-file-list> 

    <servlet> 
    <servlet-name>calculatorWebService</servlet-name> 
    <servlet-class>test.example.ws.impl.CalculatorWSImpl</servlet-class> 
    </servlet> 

    <servlet-mapping> 
    <servlet-name>calculatorWebService</servlet-name> 
    <url-pattern>/ws/calculator</url-pattern> 
    </servlet-mapping> 
</web-app> 

Wildfly 10.0會自動生成該.wsdl文件:

<wsdl:definitions name="CalculatorWSImplService" targetNamespace="http://impl.ws.example.test/"><wsdl:import location="http://localhost:8080/WebServices/ws/calculator?wsdl=CalculatorWebService.wsdl" namespace="http://ws.example.test/"> 
    </wsdl:import><wsdl:binding name="CalculatorWSImplServiceSoapBinding" type="ns1:CalculatorWebService"><soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/><wsdl:operation name="add"><soap:operation soapAction="" style="document"/><wsdl:input name="add"><soap:body use="literal"/></wsdl:input><wsdl:output name="addResponse"><soap:body use="literal"/></wsdl:output></wsdl:operation><wsdl:operation name="divide"><soap:operation soapAction="" style="document"/><wsdl:input name="divide"><soap:body use="literal"/></wsdl:input><wsdl:output name="divideResponse"><soap:body use="literal"/></wsdl:output></wsdl:operation><wsdl:operation name="multiply"><soap:operation soapAction="" style="document"/><wsdl:input name="multiply"><soap:body use="literal"/></wsdl:input><wsdl:output name="multiplyResponse"><soap:body use="literal"/></wsdl:output></wsdl:operation><wsdl:operation name="subtract"><soap:operation soapAction="" style="document"/><wsdl:input name="subtract"><soap:body use="literal"/></wsdl:input><wsdl:output name="subtractResponse"><soap:body use="literal"/></wsdl:output></wsdl:operation></wsdl:binding><wsdl:service name="CalculatorWSImplService"><wsdl:port binding="tns:CalculatorWSImplServiceSoapBinding" name="CalculatorWSImplPort"><soap:address location="http://localhost:8080/WebServices/ws/calculator"/></wsdl:port></wsdl:service></wsdl:definitions> 

我想製作我自己的.wsdl文件並使用它。我需要添加一些東西到web.xml?我會如何去做這件事?我想要這樣做的主要原因是因爲我可以鏈接我自己的.xsd。我怎樣才能阻止JBoss生成它自己的.wsdl

我試過谷歌搜索,但我想我沒有搜索正確的關鍵字,因爲我找不到任何東西。

回答

1

原來這很簡單。在您的實現類中,只需將wsdlLocation的屬性添加到@WebService註釋。

所以在我的例子,它看起來像:

@WebService (
    endpointInterface = "test.example.ws.CalculatorWebService", 
    wsdlLocation = "path/to/file.wsdl" 
) 

如果你這樣做,你可能需要指定portNameserviceName,並targetNamespace屬性以及在@WebService註釋裏面。所有這些屬性應該位於.wsdl文件中。

相關問題