Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which Eclipse version should I download? [closed]

Tags:

java

eclipse

ide

I am on a Windows machine. Want to practise Java for the web using: Tomcat, Java, JSP's, Spring Framework, and Hibernate.

http://www.eclipse.org/downloads/

(Silly question, but I am a newbie and don't want to get the wrong IDE version.)

like image 359
mrblah Avatar asked Dec 29 '09 04:12

mrblah


2 Answers

You want to practise java for the web using: tomcat, java, jsp's, spring framework, etc. then you should download the Enterprised version.

Personally I would prefer NetBeans. I use it frequently and I find it better(simpler rather) than Eclipse.

like image 173
Prasoon Saurav Avatar answered Oct 05 '22 01:10

Prasoon Saurav


Who says you need Eclipse? NetBeans and IntelliJ are both good choices as well.

If you're a newbie to Java, I'd recommend staying away from Tomcat and JSP until you can write the core language comfortably. Likewise, stay away from Hibernate until you've mastered JDBC. Spring is very complex tool that should come last in your development.

My recommended order would be:

  1. Base Java, including JDBC.
  2. Tomcat, servlets, and JSPs using JSTL (allowing CRUD-based web apps)
  3. Spring

UPDATE: It's great that you're already familiar with relational databases, ORM, objects, and DI. But I'd still recommend that you learn the language basics first. If you're really good at C#, it won't take you too long. There's an idiom to every language that you'll want to know to write well. Take the time to try and find it.

like image 36
duffymo Avatar answered Oct 05 '22 00:10

duffymo