Create 72.7. Remote debug a Spring Boot application started with Gradle.md

master
qibaoguang 2015-04-14 00:39:21 +08:00
parent 7bc16dec42
commit 091679e387
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
### 72.7. 远程调试一个使用Gradle启动的Spring Boot项目
想要为使用Gradle启动的Spring Boot应用添加一个远程调试器你可以使用build.gradle的applicationDefaultJvmArgs属性或`--debug-jvm`命令行选项。
build.gradle
```gradle
applicationDefaultJvmArgs = [
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"
]
```
命令行:
```shell
$ gradle run --debug-jvm
```
详情查看[Gradle应用插件](http://www.gradle.org/docs/current/userguide/application_plugin.html)。