Debug Vert.x app using Gradle and VS Code

huangapple go评论157阅读模式
英文:

Debug Vert.x app using Gradle and VS Code

问题

我正在使用一个使用 Java 编写 Vert.x 应用程序,其中包含一些顶点(verticles)。该应用程序使用一个 MainVerticle 进行启动,并使用 Gradle 进行构建。我使用 VS Code 作为集成开发环境(IDE)/代码编辑器,因为它非常简单且轻量。然而,我发现很难找到一种调试代码的方法。请问如何配置 build.gradle.vscode/launch.json 以启用调试选项?

到目前为止,这是我在 build.gradle 文件中用于启动的命令:

  1. run {
  2. args = [ 'run', mainVerticleName, "--redeploy=$watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$doOnChange" ]
  3. }
英文:

I'm working with a Vert.x app with verticles written in Java. The app uses a MainVerticle to start and uses Gradle for its construction. I'm using VS Code as IDE/Code Editor since it is really simple and lightweight. However it has been really difficult to find a way to debug my code. How do I configure build.gradle and .vscode/launch.json to enable debug options?

So far this is my command to start in build.gradle file:

  1. run {
  2. args = [ 'run', mainVerticleName, "--redeploy=$watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$doOnChange" ]
  3. }

答案1

得分: 1

我正在为Java开发者使用VS Code,并且我的微服务使用Eclipse Vertx.io。这在Maven中很容易配置。使用Maven创建Vertx项目并修改它以满足自己的使用需求。

我已经对它进行了修改,并获得了类似的项目(不完全相同,不能展示完整的代码):

  1. package com.test.service;
  2. import io.vertx.config.ConfigRetriever;
  3. import io.vertx.core.AbstractVerticle;
  4. import io.vertx.core.DeploymentOptions;
  5. import io.vertx.core.Promise;
  6. public class Application extends AbstractVerticle {
  7. @Override
  8. public void start(Promise<Void> startPromise) throws Exception {
  9. ConfigRetriever retriever = ConfigRetriever.create(vertx);
  10. retriever.getConfig(
  11. res -> {
  12. try {
  13. if (res.failed()) {
  14. // ...
  15. } else {
  16. startPromise.complete();
  17. vertx.deployVerticle(
  18. new TestServiceVerticle(),
  19. new DeploymentOptions().setConfig(res.result()));
  20. }
  21. } catch (RuntimeException e) {
  22. // ...
  23. startPromise.fail(e.getMessage());
  24. }
  25. });
  26. }
  27. }

Pom.xml:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>test</groupId>
  5. <artifactId>test</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. <!-- ... 省略其他部分 ... -->
  8. </project>

调试设置:

  1. {
  2. "type": "java",
  3. "name": "Run service",
  4. "request": "launch",
  5. "mainClass": "io.vertx.core.Launcher",
  6. "args": "run test.test.service.Application"
  7. }

希望这对您有所帮助。

英文:

I'm woking on VS Code for Java devs and my microservices uses Eclipse Vertx.io. It's is easy to configure for maven. Use maven create vertx project and modify it own usage.

I have modified it and got similar project (not eaxact cannot show full code)

package com.test.service;

  1. import io.vertx.config.ConfigRetriever;
  2. import io.vertx.core.AbstractVerticle;
  3. import io.vertx.core.DeploymentOptions;
  4. import io.vertx.core.Promise;
  5. public class Application extends AbstractVerticle {
  6. @Override
  7. public void start(Promise&lt;Void&gt; startPromise) throws Exception {
  8. ConfigRetriever retriever = ConfigRetriever.create(vertx);
  9. retriever.getConfig(
  10. res -&gt; {
  11. try {
  12. if (res.failed()) {
  13. .....
  14. } else {
  15. startPromise.complete();
  16. vertx.deployVerticle(
  17. new TestServiceVerticle(),
  18. new DeploymentOptions().setConfig(res.result()));
  19. }
  20. } catch (RuntimeException e) {
  21. ...
  22. startPromise.fail(e.getMessage());
  23. }
  24. });
  25. }
  26. }

Pom.xml

  1. &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
  2. &lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd&quot;&gt;
  3. &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
  4. &lt;groupId&gt;test&lt;/groupId&gt;
  5. &lt;artifactId&gt;test&lt;/artifactId&gt;
  6. &lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;
  7. &lt;properties&gt;
  8. &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
  9. &lt;maven.compiler.source&gt;1.8&lt;/maven.compiler.source&gt;
  10. &lt;maven.compiler.target&gt;1.8&lt;/maven.compiler.target&gt;
  11. &lt;maven-compiler-plugin.version&gt;3.8.1&lt;/maven-compiler-plugin.version&gt;
  12. &lt;maven-shade-plugin.version&gt;2.4.3&lt;/maven-shade-plugin.version&gt;
  13. &lt;maven-surefire-plugin.version&gt;2.22.1&lt;/maven-surefire-plugin.version&gt;
  14. &lt;exec-maven-plugin.version&gt;1.5.0&lt;/exec-maven-plugin.version&gt;
  15. &lt;vertx.version&gt;3.8.5&lt;/vertx.version&gt;
  16. &lt;junit-jupiter.version&gt;5.4.0&lt;/junit-jupiter.version&gt;
  17. &lt;main.verticle&gt;test.test.service.Application&lt;/main.verticle&gt;
  18. &lt;/properties&gt;
  19. &lt;dependencyManagement&gt;
  20. &lt;dependencies&gt;
  21. &lt;dependency&gt;
  22. &lt;groupId&gt;io.vertx&lt;/groupId&gt;
  23. &lt;artifactId&gt;vertx-stack-depchain&lt;/artifactId&gt;
  24. &lt;version&gt;${vertx.version}&lt;/version&gt;
  25. &lt;type&gt;pom&lt;/type&gt;
  26. &lt;scope&gt;import&lt;/scope&gt;
  27. &lt;/dependency&gt;
  28. &lt;/dependencies&gt;
  29. &lt;/dependencyManagement&gt;
  30. &lt;dependencies&gt;
  31. &lt;dependency&gt;
  32. &lt;groupId&gt;io.vertx&lt;/groupId&gt;
  33. &lt;artifactId&gt;vertx-web-api-contract&lt;/artifactId&gt;
  34. &lt;version&gt;${vertx.version}&lt;/version&gt;
  35. &lt;/dependency&gt;
  36. &lt;dependency&gt;
  37. &lt;groupId&gt;io.vertx&lt;/groupId&gt;
  38. &lt;artifactId&gt;vertx-junit5&lt;/artifactId&gt;
  39. &lt;scope&gt;test&lt;/scope&gt;
  40. &lt;/dependency&gt;
  41. &lt;dependency&gt;
  42. &lt;groupId&gt;org.junit.jupiter&lt;/groupId&gt;
  43. &lt;artifactId&gt;junit-jupiter-api&lt;/artifactId&gt;
  44. &lt;version&gt;${junit-jupiter.version}&lt;/version&gt;
  45. &lt;scope&gt;test&lt;/scope&gt;
  46. &lt;/dependency&gt;
  47. &lt;dependency&gt;
  48. &lt;groupId&gt;org.junit.jupiter&lt;/groupId&gt;
  49. &lt;artifactId&gt;junit-jupiter-engine&lt;/artifactId&gt;
  50. &lt;version&gt;${junit-jupiter.version}&lt;/version&gt;
  51. &lt;scope&gt;test&lt;/scope&gt;
  52. &lt;/dependency&gt;
  53. &lt;dependency&gt;
  54. &lt;groupId&gt;io.vertx&lt;/groupId&gt;
  55. &lt;artifactId&gt;vertx-config&lt;/artifactId&gt;
  56. &lt;version&gt;${vertx.version}&lt;/version&gt;
  57. &lt;/dependency&gt;
  58. &lt;/dependencies&gt;
  59. &lt;build&gt;
  60. &lt;plugins&gt;
  61. &lt;plugin&gt;
  62. &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
  63. &lt;version&gt;${maven-compiler-plugin.version}&lt;/version&gt;
  64. &lt;/plugin&gt;
  65. &lt;plugin&gt;
  66. &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
  67. &lt;version&gt;${maven-shade-plugin.version}&lt;/version&gt;
  68. &lt;executions&gt;
  69. &lt;execution&gt;
  70. &lt;phase&gt;package&lt;/phase&gt;
  71. &lt;goals&gt;
  72. &lt;goal&gt;shade&lt;/goal&gt;
  73. &lt;/goals&gt;
  74. &lt;configuration&gt;
  75. &lt;transformers&gt;
  76. &lt;transformer implementation=&quot;org.apache.maven.plugins.shade.resource.ManifestResourceTransformer&quot;&gt;
  77. &lt;manifestEntries&gt;
  78. &lt;Main-Class&gt;io.vertx.core.Launcher&lt;/Main-Class&gt;
  79. &lt;Main-Verticle&gt;${main.verticle}&lt;/Main-Verticle&gt;
  80. &lt;/manifestEntries&gt;
  81. &lt;/transformer&gt;
  82. &lt;transformer implementation=&quot;org.apache.maven.plugins.shade.resource.AppendingTransformer&quot;&gt;
  83. &lt;resource&gt;META-INF/services/io.vertx.core.spi.VerticleFactory&lt;/resource&gt;
  84. &lt;/transformer&gt;
  85. &lt;/transformers&gt;
  86. &lt;artifactSet&gt;&lt;/artifactSet&gt;
  87. &lt;outputFile&gt;${project.build.directory}/${project.artifactId}.jar
  88. &lt;/outputFile&gt;
  89. &lt;/configuration&gt;
  90. &lt;/execution&gt;
  91. &lt;/executions&gt;
  92. &lt;/plugin&gt;
  93. &lt;plugin&gt;
  94. &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
  95. &lt;version&gt;${maven-surefire-plugin.version}&lt;/version&gt;
  96. &lt;/plugin&gt;
  97. &lt;plugin&gt;
  98. &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
  99. &lt;artifactId&gt;exec-maven-plugin&lt;/artifactId&gt;
  100. &lt;version&gt;${exec-maven-plugin.version}&lt;/version&gt;
  101. &lt;configuration&gt;
  102. &lt;mainClass&gt;io.vertx.core.Launcher&lt;/mainClass&gt;
  103. &lt;arguments&gt;
  104. &lt;argument&gt;run&lt;/argument&gt;
  105. &lt;argument&gt;${main.verticle}&lt;/argument&gt;
  106. &lt;/arguments&gt;
  107. &lt;/configuration&gt;
  108. &lt;/plugin&gt;
  109. &lt;/plugins&gt;
  110. &lt;/build&gt;
  111. &lt;/project&gt;

hope it will help.

debugging settings

  1. {
  2. &quot;type&quot;: &quot;java&quot;,
  3. &quot;name&quot;: &quot;Run service&quot;,
  4. &quot;request&quot;: &quot;launch&quot;,
  5. &quot;mainClass&quot;: &quot;io.vertx.core.Launcher&quot;,
  6. &quot;args&quot;: &quot;run test.test.service.Application&quot;
  7. }

huangapple
  • 本文由 发表于 2020年4月7日 07:34:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/61070558.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定