如何在IntelliJ Idea中调试scalatra应用程序?

时间:2013-05-23 15:25:27

标签: debugging scala intellij-idea scalatra

我在IntelliJ Idea中找不到任何调试Scalatra应用程序的文档或示例。 是否可以在调试模式下运行Scalatra应用程序来附加Idea?

1 个答案:

答案 0 :(得分:10)

首先。转到IDEA,选择编辑配置操作:

enter image description here

在此选项卡上,添加新的远程配置:

enter image description here

接下来,run Scalatra with those options

enter image description here

例如:

java 
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005  -jar **-assembly-**.jar

现在点击你的IDEA的绿色调试按钮,享受调试。可能有另外一种方法来运行scalatra(例如从sbt jetty-run),但通常你只需要将这些选项提供给jvm实例。