This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.
  • 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
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Popular IDE for Struts

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

Which is a popular IDE for Struts. Which one should i learn...?

Elcipse?
ANT?
WebSphere?

...Do let me know!

Thanks!
 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Atul,

ANT, WebSphere are not IDE's...ANT is a build tool and WebSphere is an app server. Eclipse is good and you can also try using netBeans!
 
Atul Sawant
Ranch Hand
Posts: 304
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How about JEdit? the authors of struts in action book have recommended this.

I can understand WebSphere being a server (like Tomcat) but what is build tool? I can't use it to program? then what is the use? I was reading the above mentioned book and it does specified build.xml and stuff but i think it is too lame to design a whole tool just to build a web application? It should have lot of useful features...?

Am i missing something?
 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Am i missing something?

Sure, you are missing something. The purpose of a build tool in a nutshell is to simplify your development, compilation and integration of your app. It is inevitable these days to work without a build tool. We use ANT in one of our projects where we have our development environment set up using eclipse and with the help of ANT, we build it and as a result of that all our files gets stored in the correct location in the web server.
 
Ranch Hand
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A build tool (like Ant) allows you to "build" your applications.

Using xml you tell it what to do - which files to compile, where to put them, etc. etc.
You can set up different "tasks" -
ie. 'clean' which could clean out your build directories,
'build' which could compile your code,
'deploy' which could copy your code, etc.

You can even make tasks dependant on other tasks, so you could have a 'full deploy' task that first invokes 'clean', 'build' and then 'deploy'.

Take a look here also : http://en.wikipedia.org/wiki/Apache_Ant

MG
 
Atul Sawant
Ranch Hand
Posts: 304
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks MG and Jothi.

http://www.exubero.com/ant/antintro-s5.html

Nice intro...
 
Whip out those weird instruments of science and probe away! I think it's a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic