12

私はオープン フレームワーク (私は Java ベースのソリューション エンジニアです) を初めて使用し、cxf プロジェクトを構築しようとしています。

applicationContext.xml次のようなファイルとコンテンツが必要であることを理解しています

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:cxf="http://cxf.apache.org/core" xmlns:jaxws="http://cxf.apache.org/jaxws"
xmlns:http-conf="http://cxf.apache.org/transports/http/configuration"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
        http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">

<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

<http-conf:conduit name="*.http-conduit">
    <http-conf:client ReceiveTimeout=“300000“ AllowChunking="false"/>
</http-conf:conduit>

<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

<cxf:bus>
    <cxf:features>
        <cxf:logging />
    </cxf:features>
</cxf:bus>

</beans>

初期化。

どこで
cxf/cxf.xml, cxf-extension-soap.xml, cxf-servlet.xmlファイルをダウンロードできるのだろうか。

または、動的 Web プロジェクトを作成したのは間違っていますか? 他のプロジェクトの種類によって、それらのファイルが自動的に生成されますか?

4

6 に答える 6

4

または、動的 Web プロジェクトを作成したのは間違っていますか? 他のプロジェクトの種類によって、それらのファイルが自動的に生成されますか?

作成する war ファイルには、通常、META-INFディレクトリの下にマニフェスト ファイルがMANIFEST.MF. このファイルには、ビルド メタ情報が含まれています。私にとっては

Manifest-Version: 1.0
Gradle-Version: 2.0-rc-2
Created-By: 1.6.0_31 (Sun Microsystems Inc.)
Version: 10.51
Build: dev
Build-Timestamp: 10/01/2015 12:53:32
Build-User: athakur
Build-Host: ATHAKUR

このディレクトリは、プロジェクトをビルドして jar または war を作成するときに自動的に作成されます。メインクラス[Refer this Q]のように、他の属性を持つこともできます。

今あなたの質問に来ます。多くのライブラリは、構成ファイルを対応する jars META-INF フォルダーに配置します。これは単なる別の例であり、探している jar は CXF jar です。

ここに画像の説明を入力 ここに画像の説明を入力

gradle の場合、build.gradleファイルに以下を追加できます

compile("org.apache.cxf:cxf-rt-frontend-jaxrs:3.1.3")
compile("org.apache.cxf:cxf-rt-frontend-jaxws:3.1.3")
compile("org.apache.cxf:cxf-rt-transports-http:3.1.3")
于 2015-10-06T05:48:29.780 に答える
3

これらの各ファイルは、プロジェクトに含める必要がある CXF jar にあります。

cxf-servlet.xml

cxf.xml

cxf-extension-soap.xml

CXF プロジェクトを立ち上げて実行するための最速の方法は、Maven Archetype を使用することです。

于 2012-12-09T22:59:15.607 に答える