Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Visual Studio 2013 For Java

Is there any way to manage/debug/compile Java projects in Visual Studio 2013?

I saw a thread on here from 2012 for version 2010, but I figured they may have changed it a lot since then.

like image 290
Mazzone Avatar asked Aug 11 '26 19:08

Mazzone


1 Answers

Debugger Support

Current features of the debugger include:

Support for multiple JVMs
    Support for the 32- and 64-bit releases of the standard JDK 6 and 7 (HotSpot VM)
    Support for the 32- and 64-bit releases of JRockit R28.x 
Full support for “Java Runtime Environment” exceptions in the Debug → Exceptions dialog
    Standard packages and exceptions are shown in the Java Runtime Environment category
    Users can add their own exceptions by name
    Users may select which exceptions the debugger should break on at the time they are thrown
    Unhandled exceptions automatically trigger a breakpoint
    When an exception is thrown, a message is printed to the output window (similar to the way it’s handled in C# debugging) 

see this article for more information

like image 174
bumbumpaw Avatar answered Aug 14 '26 08:08

bumbumpaw