如何附加调试器以侦听 Vs 代码上的某些端口?

How to attach a debugger to listen on some port on Vs code?

提问人:user2137817 提问时间:11/10/2023 更新时间:11/10/2023 访问量:14

问:

我正在尝试通过附加调试器来侦听 localhost 上的端口 5005,因为我正在执行从群集到 localhost 的端口转发。但是我无法找出在 VS 代码上执行此操作的方法。在 Intellij 上很简单。 你能帮忙吗?

到目前为止,我这样做了:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "java",
            "name": "Debug (Attach)",
            "request": "attach",
            "hostName": "localhost",
            "port": 5005
        }
    ]
}

但这行不通。

visual-studio-code vscode-调试器

评论


答: 暂无答案