Files
rosetta-wss/.vscode/launch.json
2026-03-25 23:20:46 +02:00

38 lines
1.2 KiB
JSON

{
// 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",
"request": "attach",
"name": "Attach by Process ID",
"processId": "${command:PickJavaProcess}"
},
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Main",
"request": "launch",
"mainClass": "im.rosetta.Main",
"projectName": "rosetta-server",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "java",
"name": "Profile with JFR",
"request": "launch",
"mainClass": "im.rosetta.Main",
"projectName": "rosetta-server",
"envFile": "${workspaceFolder}/.env",
"vmArgs": "-XX:StartFlightRecording=filename=/tmp/app.jfr,settings=profile,dumponexit=true"
}
]
}