开发者

How to deploy the war file of module wise

开发者 https://www.devze.com 2023-03-06 16:29 出处:网络
i want to deploy the war files developed by 开发者_运维百科different developers on module wise.All are using the NetBeans IDE for the development,this IDE itself will generate a jar file.But all the m

i want to deploy the war files developed by 开发者_运维百科different developers on module wise.All are using the NetBeans IDE for the development,this IDE itself will generate a jar file.But all the modules are inter related.Now i want to link all this war's.How to integrate it in the deployment environment?Can i use ANT tool for this?Then how to use it?


Ant won't help you particularly, though you can probably do this in Ant. Your build file would need to

  • unpack the WAR files,
  • copy the relevant bits into a temporary tree,
  • add in customized properties files and modified versions of the original files, and finally
  • create new WAR file or files.

If the WAR files are built using Maven, you can use Maven WAR file overlays to either:

  • apply customizations to WAR files, or
  • merge multiple WARs into a single WAR.
0

精彩评论

暂无评论...
验证码 换一张
取 消