Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently I've been doing a bunch of work developing servlets for deployment in Tomcat 5.5. My current IDE is Eclipse Ganymede with WTP. I've been very unhappy with the Tomcat integration, as the configuration is constantly breaking and needing tweaking.

I was wondering if anyone could recommend another IDE that handles this integration better. I am particularly interested in what people think of IntelliJ's support for Tomcat.

Note I am also using Maven 2, and it's pretty essential to have Maven support as well.

share|improve this question

10 Answers

Netbeans has tomcat integration. By that I mean you can start and stop tomcat, deploy, profile and debug your app running in tomcat from the IDE.

Best Practices for Apache Maven in NetBeans 6.x

share|improve this answer

Netbeans all the way.

The integration with tomcat is fantastic, it even allows you to create project and automatically deploy and update on the fly without have to write any sort of build scripts deployment descriptors etc. It really is that easy :-)

http://www.netbeans.org

share|improve this answer
1  
Although Eclipse WTP lets you basically do the same thing pretty much. :) – cliff.meyers Mar 12 '09 at 19:54

If you aren't using a debugger for JSPs, any IDE (I use Eclipse) works with any J2EE server using remote debugging. Add this to your startup script for Tomcat:

-Xdebug -Xrunjdwp:transport=dt_socket,address=5001,server=y,suspend=n

And then set up a remote debugging profile in your IDE using the port you specified (in this case, 5001).

This configuration never breaks and works for any Java app. Just run your application as you always do, and attach your debugger whenever you want.

share|improve this answer

IntelliJ IDEA is the IDE for you, having both excellent Tomcat and Maven integration.

share|improve this answer

I've used MyEclipse, the SysDeo plugin for Eclipse, and WTP. Of the three, when WTP works, it kicks the pants off the others. Most maven projects will just import and just run.

Unfortuantely sometimes WTP doesnt seem to work, and you're basically SOL. Our current project has a rather complex maven configuration and I've not yet

  • gotten it to work.
  • reduced the problem to a small test case to bug-submit.

I highly recommend WTP, particularly if you're already an Eclipse user.

share|improve this answer

This is not a direct answer to the question but, instead of changing the IDE, maybe consider changing the container (and maybe forget the WTP). I warmly suggest to try Jetty, especially if you are already using Maven. With a few lines of configuration, you'll be able to run mvn jetty:run on your project and Jetty will start, deploy and scan files for changes to redeploy the webapp if necessary. Isn't this nice ?

So I don't use the WTP but the maven jetty plugin as it provides useful features to me: simplicity (usage and configuration), short round trip cycles (start and deploy), files scanner, etc and of course integration with maven. Inside Eclipse, I use externals tools to stop and start Jetty by calling the maven plugin. For debugging, I use remote debug options when launching Jetty and connect a remote debugger on demand as explained in Debugging with the Maven Jetty Plugin in Eclipse.

This way, I can do all I want from Eclipse and/or maven and I'm happier than with the WTP and any other lightweight container.

share|improve this answer

I use the sysdeo plugin for eclipse and like it quite a bit.

share|improve this answer

You can debug JSPs very nicely with IntelliJ running on Tomcat, Jetty, WebLogic, or any other Java EE container. Far and away the best IDE.

share|improve this answer

Intellij has great Tomcat and Maven support. If you can afford to spend a few bucks, it's definitely worth the money. You can get a 30 day free trial of Intellij. Give it a shot and you won't look back.

share|improve this answer

I think you'll like MyEclipse IDE. Ain't free but IMHO it's worth it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.