| Author |
Popular IDE for Struts
|
Atul Sawant
Ranch Hand
Joined: Jul 06, 2006
Posts: 304
|
|
Hello people.... Which is a popular IDE for Struts. Which one should i learn...? Elcipse? ANT? WebSphere? ...Do let me know! Thanks!
|
Mission SCWCD. Mission SCJP Complete: SCJP 1.4 - 91%
|
 |
Joe Harry
Ranch Hand
Joined: Sep 26, 2006
Posts: 8795
|
|
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!
|
SCJP 1.4, SCWCD 1.4 - Hints for you, SCBCD Hints - Demnachst, SCDJWS - Auch Demnachst
Did a rm -R / to find out that I lost my entire Linux installation!
|
 |
Atul Sawant
Ranch Hand
Joined: Jul 06, 2006
Posts: 304
|
|
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 Harry
Ranch Hand
Joined: Sep 26, 2006
Posts: 8795
|
|
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.
|
 |
Mark Garland
Ranch Hand
Joined: Nov 11, 2006
Posts: 226
|
|
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
|
28/06/06 - SCJP - 69%, 05/06/07 - SCWCD - 92%, 28/02/08 - IBM DB2 v9 Fundamentals (Exam 730) - 87%, 18/11/08 - IBM DB2 v9 DBA (Exam 731) - 89%, 26/02/11 - SCBCD - 88%
|
 |
Atul Sawant
Ranch Hand
Joined: Jul 06, 2006
Posts: 304
|
|
Thanks MG and Jothi. http://www.exubero.com/ant/antintro-s5.html Nice intro...
|
 |
 |
|
|
subject: Popular IDE for Struts
|
|
|