Maven Cargo:Weblogic部署pingURL超时

时间:2016-03-22 12:27:22

标签: maven deployment maven-cargo cargo-maven2-plugin

我已将cargo插件配置为部署到已运行的weblogic本地安装。

当我运行mvn cargo:deploy时,我可以看到它将war复制到weblogic域的autodeploy目录中,然后我可以在我的Web浏览器中找到它尝试ping的相同URL并显示欢迎页面。

我希望货物能够通过使用<pingURL>标签来确认部署是否有效,但是即使有很长的超时,它总是说在超时期限内无法部署!

有什么想法吗?

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.4.14</version>
    <inherited>true</inherited>
    <configuration>
        <container>
            <containerId>weblogic121x</containerId>
            <type>installed</type>
            <home>${weblogic121x.home}</home>
        </container>
        <configuration>
            <type>existing</type>
            <home>${weblogic121x.home}/domains/${weblogic121x.domain}</home>
            <properties>
                <cargo.hostname>${weblogic121x.host}</cargo.hostname>
                <cargo.weblogic.administrator.user>${weblogic121x.user}</cargo.weblogic.administrator.user>
                <cargo.weblogic.administrator.password>${weblogic121x.password}</cargo.weblogic.administrator.password>
                <cargo.logging>high</cargo.logging>
                <cargo.servlet.port>${weblogic121x.adminport}</cargo.servlet.port>
            </properties>
        </configuration>
        <deployables>
            <deployable>
                <groupId>${project.groupId}</groupId>
                <artifactId>${project.artifactId}</artifactId>
                <type>war</type>
                <properties>
                    <context>${sit.context}</context>
                </properties>
                <location>${project.build.directory}/${project.build.finalName}.${project.packaging}</location>
                <pingURL>http://${weblogic121x.host}:${weblogic121x.adminport}${sit.context}</pingURL>
                <pingTimeout>150000</pingTimeout>
            </deployable>
        </deployables>
    </configuration>
</plugin>

1 个答案:

答案 0 :(得分:0)

你能尝试用-X标志运行maven build吗?尝试在控制台中查找URLDeployableMonitor调试日志。它应该显示Cargo正在做什么以及ping失败的原因。