在websphere中部署EAR文件

时间:2014-04-27 14:47:12

标签: java maven websphere

构建我的maven项目后,将在目标文件夹下创建ear文件。每次我必须登录websphere控制台并部署最新的ear文件。是否有任何方法可以将最新的EAR自动部署到服务器中。

我正在使用:

工具 - Eclipse Indigo 服务器 - Websphere

如果需要任何其他信息,请与我们联系。

3 个答案:

答案 0 :(得分:0)

您可以使用WebSphere Application Server管理脚本和ant命令。

脚本将具有非常简单的命令AdminApp.install('application.ear', ['-server', 'server_name'])

创建ant请求调用您的脚本。 将ant maven插件添加到pom中并调用创建的ant任务。

您可以在WebSphere documentation

中看到更多选项

答案 1 :(得分:0)

你可以试试Maven Cargo插件。

https://codehaus-cargo.github.io/cargo/Home.html

我使用Cargo插件部署到各种服务器,如Tomcat,JBoss AS和最近的WildFly。

让我知道它是否适合你。

clean package cargo:deploy

答案 2 :(得分:0)

IBM已经发布了针对websphere的eclipse插件: https://davanum.wordpress.com/2011/10/10/was-7-0-eclipse-plugin-ibm-websphere-application-server-7-0/ 在我使用的配置中,Maven没有部署ear本身,它应该配置Eclipse项目来解决依赖关系,然后Eclipse负责EAR构建和部署。