我试图将我的项目从Eclipse移植到VSCode中。应用程序运行正常,但只要我更改UI,它就不会自动重新加载。这适用于Eclipse,但我无法弄清楚为什么VScode在我的应用程序启动后不会这样做。
我的pom中有spring boot maven插件,如下所示。
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
我是否需要在launch.json中添加任何可能缺少的东西?或者我需要进行其他一些配置更改吗?
"configurations": [
{
"type": "java",
"name": "Debug (Launch)-Application<comp-man>",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "com.timeman.Application",
"projectName": "comp-man",
"args": ""
},
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0
}
]
}