dataflow/.vscode/launch.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2022-07-27 08:25:10 +00:00
{
// 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": [
2022-07-28 18:14:47 +00:00
{
"type": "java",
"name": "Launch OperateProcessor",
"request": "launch",
"mainClass": "com.yuandian.dataflow.statemachine.rpc.OperateProcessor",
"projectName": "dataflow"
},
{
"type": "java",
"name": "Launch StateFactory",
"request": "launch",
"mainClass": "com.yuandian.dataflow.statemachine.StateFactory",
"projectName": "dataflow"
},
2022-07-27 08:25:10 +00:00
{
"type": "java",
"name": "Launch Server",
"request": "launch",
"mainClass": "com.yuandian.dataflow.Server",
"projectName": "dataflow",
2022-07-28 18:14:47 +00:00
"args": [
"2"
],
2022-07-27 08:25:10 +00:00
"preLaunchTask": "restart",
2022-07-28 18:14:47 +00:00
"postDebugTask": "stopall"
}
2022-07-27 08:25:10 +00:00
]
}