cxfクライアント開発

1072 ワード

  • cxfパッケージをダウンロードしてwsdl 2 javaを見つけた.bat 
  • wsdl 2 java-d G:\com-p comを実行します.gcj.utils.userCheck  -client http://home.glodon.com:7783/Utilities/Account/ProxyService/SsoAuthUserProcess?wsdl

  • -d格納場所の指定-pパケットパス-client生成クライアントの指定
        3.comを見つけます.gcj.utiles.userCheckは関連ファイルを開発プロジェクトにコピーします.
        4.スプリング統合構成の構成
    <bean id="userClientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
    <!--     -->
    <property name="serviceClass" value="com.gcj.utils.userCheck.SsoAuthUserProcess" />
    <!--      -->
    <property name="address" value="http://home.glodon.com:7783/Utilities/Account/ProxyService/SsoAuthUserProcess" />
    
    </bean>
    <!--       -->
    <bean id="userClient" class="com.gcj.utils.userCheck.SsoAuthUserProcess"factory-bean="userClientFactory" factory-method="create" />

        5. 注入コールでいいです
                
    @Autowired
    private SsoAuthUserProcess ssoAuthUserProcess;