How can I get JBoss to explode a deployed WAR file?

后端 未结 6 1887
醉话见心
醉话见心 2021-01-01 17:27

I am running JBoss 4.3 on Ubuntu under /usr/local/jboss-4.3/. I have deployed my application as a WAR file i.e. myapp.war, to /usr/local/jboss-4.3/server/myserver/deploy. Ho

6条回答
  •  情书的邮戳
    2021-01-01 18:03

    This link can be useful:

    http://community.jboss.org/wiki/DeployTipsAndBuildSampleScripts

    Quick Summary of what the article concerns: When it comes application builds/deployments in JBoss, there are a plethora of viable approaches. This wiki highlights several build/deploy scenerios, along with steps and pertinent build script samples. The following approaches are covered:

    • Point/click deployment using JBossIDE - For users that don't like ANT build scripts

    • Exploded EAR, JAR, SAR, WAR deployment (Option 1) - Maximize development productivity by eliminating ANT copy tasks

    • Exploded EAR, JAR, SAR, WAR deployment (Option 2) - Separate IDE from the compile, build and deploy process

    • Normal EAR, JAR, SAR, WAR deployment - Deploy a zipped archive (Necessary when using Clustering/Farm Deployment

提交回复
热议问题