Java 无法在Intellij 15 Ultimate Edition中远程调试JSP

Java 无法在Intellij 15 Ultimate Edition中远程调试JSP,java,eclipse,jsp,intellij-idea,wso2is,Java,Eclipse,Jsp,Intellij Idea,Wso2is,我可以使用远程java应用程序WSO2 Identity Server在Eclipse中远程调试JSP文件,但在Intellij 15 Ultimate Edition中它不起作用 将以下内容添加到bat文件中 -Xdebug-Xrunjdwp:transport=dt_套接字,地址=127.0.0.1:8888,服务器=y,挂起=n 对Intellij执行以下配置 Intellij 15终极版可以调试而不会出现问题。您的.bat文件命令似乎不正确。在CLI中,我们使用\>wso2sever.b

我可以使用远程java应用程序WSO2 Identity Server在Eclipse中远程调试JSP文件,但在Intellij 15 Ultimate Edition中它不起作用

将以下内容添加到bat文件中

-Xdebug-Xrunjdwp:transport=dt_套接字,地址=127.0.0.1:8888,服务器=y,挂起=n

对Intellij执行以下配置


Intellij 15终极版可以调试而不会出现问题。您的.bat文件命令似乎不正确。在CLI中,我们使用\>wso2sever.bat-debug 8888 我认为您可以在.bat文件中使用上面的命令,如下所示

full_path_to_Server_bin\wso2sever.bat -debug 8888

以上内容保存在whatever.bat文件中,您可以重新使用它。

我需要从bat文件中删除-Xdebug吗?