Does Websphere explode WARs and/or JARs when they get deployed?

只愿长相守 提交于 2019-12-11 00:52:19

问题


When we deploy WAR into tomcat it explode WAR, while deploying WAR in websphere dose it explode the WAR as well. because I have deployed WAR into websphere but it dose not exploded my WAR and if the WAR is not exploded the file resolver doe not works.


回答1:


WebSphere Application Server always explodes the wars. You should take a look under profile-directory/installedApps/your-management-cell-name/. The WAR will be wrapped inside EAR for deployment, and under the EAR directory you will find the WAR exploded.

Please notice a few things about the behaviour:

  • Modifying the contents of the directory manually is not advisable, because several management related activities can remove your modifications. This happens quite easily especially when using managed nodes. If you have to modify something in production always do your modifications via the administrative interfaces.
  • If you wish to modify JSP files in your applications again manually, you have to notice that JSP reloading is not necessarily enabled in all environments for the application.

If you have technical problems and the deploying does not work as it should you should do Deployment Mustgather to see what goes wrong.



来源:https://stackoverflow.com/questions/3852688/does-websphere-explode-wars-and-or-jars-when-they-get-deployed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!