web-dev-qa-db-ja.com

Eclipseで動的WebプロジェクトからEARファイルを構築するにはどうすればよいですか?

私はEclipseで作成したWebサービスをEARファイルにデプロイすることを検討しています。私はそれをWARとしてエクスポートし、Tomcatにすべての問題なく展開できますが、最終的な製品はTomcatにはなく、WARファイルにはなりません。サーバーとしてWebsphereを使用する必要があります。サーバーには、有効なEARファイルにアクセスしてデプロイできます。デプロイするEARファイルがある場合。

要するに、Eclipseの動的WebプロジェクトからEARファイルをエクスポートするにはどうすればよいでしょうか。

14
ZKSteffel

Eclipseでエンタープライズアプリケーションプロジェクト(基本的にはEAR)を作成し、ダイナミックWebプロジェクトをEARプロジェクトに追加して、全体をエクスポートする必要があります。

11
Matt Ball

このために、Antビルドスクリプトを使用します(Eclipseで新しいAntファイルを作成し、それを動的Webプロジェクトルートに保存して、Eclipseから実行するときに右クリック>実行します。基本的には次のようなものです。 以下のスクリプトの$ {earDir}にwarをコピーし、それをEARにビルドします(EARは単なるJARの一種です)。

    <target name="buildEar" depends="init">
    <copy tofile="${earDir}/" file="yourWarFile"/>
    <copy tofile="${earDir}/META-INF/application.xml" file="localDirectory/application.xml"/>
    <copy todir="${earDir}/META-INF">
        <fileset dir="localDirectory" includes="was.policy" />
    </copy>
    <jar jarfile="localDir/something.ear" basedir="${earDir}">
        <!-- Define the properties for the Manifest file. -->
        <manifest>
            <attribute name="Implementation-Vendor"  value="Company name"/>
            <attribute name="Implementation-Title"   value="Application Title"/>
            <attribute name="Implementation-Version" value="version and build number"/>
        </manifest>     
    </jar>
</target>

Was.policyファイルは次のようになります(すべてのアクセス許可を与えるのはよくありませんが、後で実行して変更できます)。

    //
// Template policy file for enterprise application.
// Extra permissions can be added if required by the enterprise application.
//
// NOTE: Syntax errors in the policy files will cause the enterprise application FAIL to start.
//       Extreme care should be taken when editing these policy files. It is advised to use
//       the policytool provided by the JDK for editing the policy files
//       (WAS_HOME/Java/jre/bin/policytool). 
//

grant codeBase "file:${jars}" {
};

grant codeBase "file:${connectorComponent}" {
};

grant codeBase "file:${webComponent}" {
};

grant codeBase "file:${ejbComponent}" {
};

grant codeBase "file:${application}" {
  permission Java.security.AllPermission;
};

Application.xmlファイルは次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<application id="Application_ID" version="1.4" xmlns="http://Java.Sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://Java.Sun.com/xml/ns/j2ee http://Java.Sun.com/xml/ns/j2ee/application_1_4.xsd">
    <display-name>yourAppName</display-name>
    <module id="WebModule_1240219352859">
        <web>
            <web-uri>yourWarFile.war</web-uri>
            <context-root>urlToApplication</context-root>
        </web>
    </module>
</application>

そこにあるIDは、私が信じるEARごとに一意である必要があります(またはサーバーが覚えていないのですか)。

これがお役に立てば幸いです。

1
Gurnard