我可以使用远程Java应用程序(WSO2 Identity Server)在Eclipse中远程调试JSP文件,但它在Intellij 15 Ultimate Edition中不起作用。
在bat文件中添加了以下内容。
-Xdebug -Xrunjdwp:transport=dt_socket,address=127.0.0.1:8888,server=y,suspend=n
对Intellij
进行了以下配置答案 0 :(得分:0)
Intellij 15 Ultimate Edition可以毫无问题地进行调试。它似乎是你的.bat文件命令不正确。在CLI中我们使用了\> wso2sever.bat -debug 8888
我想你可以在.bat文件中使用上面的命令,如下所示。
full_path_to_Server_bin\wso2sever.bat -debug 8888
以上保存在whatever.bat文件中,您可以重复使用它。