使用Visual Studio 2013 For Java

问题描述 投票:2回答:1

有没有办法在Visual Studio 2013中管理/调试/编译Java项目?

我从2012年开始在2010年看到了一个帖子,但我认为从那以后他们可能已经改变了很多。

java debugging compilation visual-studio-2013
1个回答
7
投票

调试器支持

调试器的当前功能包括:

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) 

有关更多信息,请参阅this文章

© www.soinside.com 2019 - 2024. All rights reserved.