1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| { "workbench.iconTheme": "material-icon-theme", "editor.guides.bracketPairs": true, "workbench.colorCustomizations": {
}, "editor.codeActionsOnSave": { }, "files.autoSave": "afterDelay", // 代理配置 // "http.proxy": "", // "http.proxyStrictSSL": false, // "http.proxySupport": "on",
// springboot 配置 "java.jdt.ls.java.home":"d:\\etc\\jdk-17.0.8.7-hotspot", "java.configuration.maven.userSettings": "D:\\usr\\apache-maven-3.9.4\\conf\\settings.xml", "java.configuration.maven.globalSettings": "D:\\usr\\apache-maven-3.9.4\\conf\\settings.xml", "maven.executable.path": "D:\\usr\\apache-maven-3.9.4\\bin\\mvn.cmd",
"maven.excludedFolders": [
"**/.*", "**/node_modules", "**/target", "**/bin", "**/archetype-resources" ], "extensions.autoUpdate": false, "redhat.telemetry.enabled": true,
// java "java.configuration.runtimes": [
{ "name": "JavaSE-1.8", "path": "D:\\etc\\jdk-1.8", }, { "name": "JavaSE-11", "path": "D:\\etc\\jdk-11.0.20.8-hotspot", }, { "name": "JavaSE-17", "path": "D:\\etc\\jdk-17.0.8.7-hotspot", "default": true }, ], "boot-java.rewrite.reconcile": true, "security.workspace.trust.untrustedFiles": "open", "remote.SSH.remotePlatform": { "60.204.200.91": "linux" }, "workbench.colorTheme": "Default Dark+",
}
|