launch.json 549 B

1234567891011121314151617
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "java",
  9. "name": "GatewayApp",
  10. "request": "launch",
  11. "mainClass": "com.leanwo.gateway.GatewayApp",
  12. "projectName": "GatewayServer",
  13. "console": "internalConsole",
  14. "vmArgs": ["-Xmx256m", "-Xms128m"]
  15. }
  16. ]
  17. }