• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Can we upload seperate module wise .war file instead of whole .war file?

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello friends,

Can we upload seperate module wise .war file instead of whole .war file? Means If I do changes in only one module of my project I will upload that .war file on server instead whole .war file is it possible?

 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can always deploy multiple .war files. But you'll have to decide how to interact (if that's required) between those individual web applications.
 
pallavi chaudhari
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Jai,

But these are not different web application its single web application.

And .war file size of my project is 83 MB.

So whenever client suggest changes,I have to upload whole 83 Mb again..its takes time?

is there any way to upload only changed files in Jboss?
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can deploy your application in exploded format http://community.jboss.org/wiki/ExplodedDeployment and then just replace the files that you want to change. To redeploy the application, you can then just "touch" the web.xml file as explained here
 
pallavi chaudhari
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Jai,

But is it safe from data security point of view to upload using exploded deployment....?
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

pallavi chaudhari wrote:

But is it safe from data security point of view to upload using exploded deployment....?



I'm not sure what kind of security issue you are talking about. Can you explain more? By the way, JBoss AS already ships some exploded deployments by default (look in the deploy folder).
 
reply
    Bookmark Topic Watch Topic
  • New Topic