如何将Maven Web应用程序部署到本地安装的Glassfish?

时间:2017-02-16 11:48:13

标签: maven deployment glassfish

如何使用maven插件将maven Web应用程序部署到本地安装的glassfish服务器?

换句话说,如果我有一个带有packaging = war的maven项目,可以使用" mvn clean package some-plugin:goal-deploy"?这样的命令部署到本地安装的glassfish。

3 个答案:

答案 0 :(得分:4)

是的,可以使用Cargo Maven Plugin,因为在以下示例中对此进行了自我解释:

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <configuration>
                <container>
                    <containerId>glassfish4x</containerId>
                    <type>installed</type>
                    <!-- Path to directory where glassfish is installed -->
                    <home>C:/programs/glassfish4</home>
                </container>
                <configuration>
                    <type>existing</type>
                    <!-- Path to domains directory -->
                    <home>C:/programs/glassfish4/glassfish/domains</home>
                    <properties>
                        <!-- Domain name where application will be deployed. -->
                        <cargo.glassfish.domain.name>domain1</cargo.glassfish.domain.name>
                        <!-- Glassfish user to authenticate -->
                        <cargo.remote.username>admin</cargo.remote.username>
                        <!-- Glassfish password to authenticate -->
                        <cargo.remote.password></cargo.remote.password>
                    </properties>
                </configuration>
            </configuration>
        </plugin>
    </plugins>
</build>

使用上面引用的插件部署的maven命令是:

mvn clean package cargo:deploy

clean package cargo:redeploy

答案 1 :(得分:0)

您需要指定插件的版本。 Maven版本3给了我一些关于这个问题的警告。

答案 2 :(得分:0)

我遇到了类似的问题,使用 Glassfish 的 asadmin 进行部署。

我刚刚通过将此插件添加到我的 POM.xml 中找到了该问题的解决方案,使用您提到的 Maven 插件(以下链接:https://alexjoz.gitbooks.io/code-life/content/chapter3.html

<plugin>
    <groupId>org.glassfish.maven.plugin</groupId>
    <artifactId>maven-glassfish-plugin</artifactId>
    <version>2.1</version>
    <configuration>
    <glassfishDirectory>D:\\Users\\admin\\GlassFish_Server_5.1.0\\glassfish</glassfishDirectory>
        <user>admin</user>
        <passwordFile>D:\\Users\\admin\\GlassFish_Server_5.1.0\\glassfish\\domains\\domain1\\config\\domain-passwords</passwordFile>
        <domain>
            <name>domain1</name>
            <httpPort>8080</httpPort>
            <adminPort>4848</adminPort>
        </domain>
        <components>
            <component>
                <name>${project.artifactId}</name>
                <artifact>target/${project.artifactId}-${project.version}.war</artifact>
            </component>
        </components>
        <debug>true</debug>
        <terse>false</terse>
        <echo>true</echo>
    </configuration>
</plugin>

然后我只是点击了运行并等待 JSP 页面出现。

我的项目信息:

  • Netbeans 12
  • jdk 1.8
  • 玻璃鱼 5.1.0
  • Spring MVC 框架 5.2.2.RELEASE