Which "Select Main Type" should I select when using Eclipse to debug Play Framework based Java Project? -
i 'eclipsified' project - play-java-test created. when using debug configuration - main class should select?
i using play framework 2.4.2
you don't start play application via eclipse. use activator
command in terminal that. e.g. activator -jvm-debug 9999 run
in folder of application runs play/activator in debug mode. debugging eclipse connects running application: in debug configurations go remote java application, choose project. host localhost , port 9999. click debug
.
Comments
Post a Comment