使用Play eclipsify xxxx[项目路径],可以把play new xxxx[项目路径]创建的工程生成为Eclipse的项目
但是在Debug AS 调试的时候,会报以下错误
Error occurred during initialization of VM
agent library failed to init: jdwp
ERROR: Cannot load this JVM TI agent twice, check your java command line for duplicate jdwp options.
解决方法,可以找到Play的目录下面的eclise相关文件进行编辑,保存,下次在创建工程即没有问题了
我这里是:x:\play-1.4.2\resources\eclipse\debug.launch文件.
把文件中的"-Xrunjdwp:transport=dt_socket,address=%JPDA_PORT%,server=y,suspend=n"去掉即可.
现在已创建的工程解决方法,是在工程中的 xxxx[项目名称].launch中删除"-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"即可.
时间: 2024-10-08 09:46:21