1

Maven3.0.4とmaven-glassfish-plugin2.1(http://maven-glassfish-plugin.java.net/)およびGlassfish2.1.1を使用しています。

関連するPOM.XMLフラグメント:

<profile>
        <id>deploy</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.glassfish.maven.plugin</groupId>
                    <artifactId>maven-glassfish-plugin</artifactId>
                    <version>2.1</version>
                    <configuration>
                        <glassfishDirectory>/home/user/glassfish</glassfishDirectory>
                        <domain>
                            <name>domain1</name>
                            <host>hostname</host>
                            <adminPort>4848</adminPort>
                        </domain>
                        <autoCreate>false</autoCreate>
                        <terse>true</terse>
                        <debug>false</debug>
                        <echo>true</echo>
                        <user>admin</user>
                        <passwordFile>/home/user/user.gfpass</passwordFile>
                        <components>
                            <component>
                                <name>${project.artifactId}</name>
                                <artifact>${project.build.directory}/${project.build.finalName}.war</artifact>
                            </component>
                        </components>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

問題は、私がデプロイしているGlassfishサーバーには、開発者ごとに1つのスタンドアロンインスタンスが構成されており、実行中mvn glassfish:deployの原因は次のとおりです。

[INFO] --- maven-glassfish-plugin:2.1:deploy (default-cli) @ project ---
[INFO] deploy --port 4848 --enabled=true --host hostanme --precompilejsp=false --verify=false --echo=true --upload=true --terse=true --generatermistubs=false --passwordfile /home/user/user.gfpass --interactive=false --availabilityenabled=false --name project --target server --force=true --user admin /home/user/git/project/target/project-1.0.0-SNAPSHOT.war
[ERROR] CLI171 Command deploy failed : Application project is already deployed on other targets. Please remove all references or specify all targets (if not using asadmin command line) before attempting redeploy operation
[ERROR] Deployment of /home/user/git/project/target/project-1.0.0-SNAPSHOT.war failed.

--target server実行したコマンドに注意してください。

どのインスタンス(つまりtarget)にデプロイするかをPOMで指定するにはどうすればよいですか?

4

2 に答える 2

2

さらに調査した結果、答えは「いいえ」です。できません

私が知っている2つのオプションがあります:

  1. 必要なパラメータでexec-maven-plugin呼び出すために使用する、またはasadmin
  2. 必要な変更を加えた独自のバージョンをフォークしますmaven-glassfish-plugin(これは私が今のところ行ったことです)。

実は、プラグインは非常にシンプルで、ニーズに合わせて変更しても問題ありません。それを構築するのはもっと面倒でしたが、それは別の話です。

于 2013-02-05T07:36:06.807 に答える
0

こんにちは私の解決策はこれでした:

再デプロイの実行としてpomを残しました

        <execution>
                <id>gf-deploy</id>
                <phase>package</phase>
                <goals>
                    <goal>redeploy</goal>
                </goals>
            </execution>

次に、asadmin.batファイルを変更し、スクリプトがappserver-cli.jarファイルを呼び出している行の後に、3つの新しい行を追加した後、redeployがundeployおよびdeployコマンドを呼び出すことに注意してください。これにより、mavenglassfishプラグインのトリックは次のようになります。 undeployコマンドの実行時に何かを出力します(Undeployコマンドが常に成功したかのようにMavenプラグインを混乱させます)が、asadminコマンドがデプロイされると、フローは正常に実行されます。

:run
if NOT %1 == undeploy goto :end
%JAVA% -jar "%~dp0..\lib\client\appserver-cli.jar" %*
ECHO "TEST"
:end

if %1 == undeploy goto :end1
%JAVA% -jar "%~dp0..\lib\client\appserver-cli.jar" %*
:end1

この変更を行った後、再配置は常に非常にうまく機能しています!

于 2015-01-17T18:38:05.360 に答える