• 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

How to integrate work done by individual members of the team?

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Greeting of the day!

I am new and don't have a lot of hands on experience in java.
My question is suppose there is a team of 4 guys making a MVC application. Every evening each one of them create some JSP's, servlet's etc. Then they merge it all together. How they do that? Is there any tool involved to do so? If so where can I learn it(Is there any video tutorial available on youtube etc.)?

Please help me out.

Thanks in advance.
 
Greenhorn
Posts: 24
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Your doubt is related to "Build/ Deployment and Software Configuration Management". There certain top notch Configuration/Versioning tools available like IBM Clearcase, Win CVS or free ones like Tortoise SVN, Subversion. These tools basically maintain a code repository(collection of resources like source code, documents on a network file system).

Every developer in the team takes code (which is to be modified) from this repository. This operation is called checkout. Once changes are done modified/new files are updated in the repository. This operation is called checkin. End of the day, the updated code in the repository is used to prepare build/package for deployment which will contain all the recent changes in the code. For all these tools there plugins available which can be integrated into IDEs like Eclipse.

In order to prepare built ANT or Maven can be used. Check http://www.java2s.com/Tutorial/Java/0520__Ant/Catalog0520__Ant.htm for more info on ANT.

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic