views:

544

answers:

3

As a long time user of Visual Studio, I feel comfortable using this as my primary IDE for editing code (I primarily code in C#/ASP.NET). Lately I've been looking more in depth into the Google Web Toolkit (or GWT) as a potential tool for building rapid web client tools for the web. I would therefore like to know whether it is possible to edit Java syntax, and otherwise set Visual Studio up to built web applications for GWT?

+2  A: 

Hi there

The option i m using is using Eclipse with an IntelliJ Idea key mapping ( i m a resharper fan and I miss it) Another option is take the plunge and get IntelliJ Idea, its a fantastic IDE and it was really easy to get used to it, it has some nice pluggins for GWT development too

Cheers

Miau
Based on the answers to this questions, I must conclude that it is not possible to use Visual Studio as an IDE for GWT.
PropellerHead
A: 

What is Visual Studio's support for Java like, I assuming that its GWT support is not as good. ;)

I think you are better off using an IDE which actually supports GWT. You could have a look at http://www.jetbrains.com/idea/features/gwt.html The demo is rather old (from 2006) but if you haven't seen IntelliJ it might be interesting.

Peter Lawrey
A: 

Visual Studio used to be the best Java IDE in the 90's. Since then much better alternatives came out.

The 3 most commonly used right now are: Eclipse NetBeans IntelliJ.

Microsoft stopped supporting Java development a long time ago. At that time Java was still at 1.3. With Java 1.5 the language was extended with generics and other constructs that Visual Studio will certainly not support.

David Nouls