play2的两种debug方式

首先吐槽下play2的编译启动速度(sbt你可以把t去掉了么),赞一下play1的动态编译和重启速度。

play2在Intellij idea上的调试:
第一种方式:安装play2 support插件调试。然后如图配置即可:
[img]http://dl2.iteye.com/upload/attachment/0095/9883/52fe5223-66d2-328c-9133-75a5d25a4d41.jpg[/img]

第二种方式:
在命令行用play debug命令启动9999 debug端口。
然后用play run或者play start启动项目(区别在于run是开发模式会动态加载代码,start是线上模式不会动态加载代码)。
最后在ide(不限于Intellij,用eclipse或者netbeans都一样)上配置个remote debug,并且把端口设置为9999即可。
(Intellij idea的配置如下图):
[img]http://dl2.iteye.com/upload/attachment/0095/9885/a9837295-475d-3837-b0ff-6e67c7e65a54.jpg[/img]

你可能感兴趣的:(play2,scala)