RUOYI-geek/.vscode/settings.json

68 lines
2.2 KiB
JSON
Raw Normal View History

{
2023-12-13 06:09:08 +00:00
"java.configuration.updateBuildConfiguration": "interactive",
"java.compile.nullAnalysis.mode": "disabled",
"maven.view": "hierarchical",
2024-03-23 10:56:38 +00:00
"maven.executable.options": "-T 4",
"maven.pomfile.autoUpdateEffectivePOM": true,
"java.debug.settings.hotCodeReplace": "auto",
"spring-boot.ls.java.home": "",
2024-04-15 12:48:12 +00:00
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=9 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms4G -Xlog:disable",
"maven.excludedFolders": [
"**/.vscode",
"**/.idea",
"**/target",
"**/.*",
"**/node_modules",
"**/target",
"**/bin",
"**/archetype-resources"
],
"boot-java.rewrite.refactorings.on": true,
"maven.executable.preferMavenWrapper": true,
"java.import.maven.enabled": true,
"java.dependency.packagePresentation": "hierarchical",
2025-03-04 12:30:56 +00:00
"dbcode.connections": [
{
2025-03-04 12:30:56 +00:00
"connectionId": "btr-_nFe7R0oOvCj0mMun",
2025-03-09 13:49:18 +00:00
"name": "ry-mysql",
2025-03-04 12:30:56 +00:00
"driver": "mysql",
"connectionType": "host",
"host": "127.0.0.1",
"port": 3306,
2025-03-04 12:30:56 +00:00
"ssl": false,
"username": "root",
2025-03-09 13:49:18 +00:00
"password": "123456",
2025-03-04 12:30:56 +00:00
"savePassword": "secretStorage",
"database": "ry",
"connectionTimeout": 30,
"driverOptions": {
"retrievePublickey": true
}
},
{
2025-03-04 12:30:56 +00:00
"connectionId": "7NX2UhXl__9t3Ca6TzEsB",
2025-03-09 13:49:18 +00:00
"name": "ry-postgres",
2025-03-04 12:30:56 +00:00
"driver": "postgres",
"connectionType": "host",
"host": "127.0.0.1",
"port": 5432,
2025-03-04 12:30:56 +00:00
"ssl": false,
"username": "postgres",
2025-03-04 12:30:56 +00:00
"password": "123456",
"savePassword": "secretStorage",
"connectionTimeout": 30
},
{
"connectionId": "fNsY4HlOb21w_5TnIGy_d",
"name": "localhost",
"driver": "redis",
"connectionType": "host",
"host": "127.0.0.1",
"port": 6379,
"ssl": false,
"savePassword": "na",
"readOnly": false,
"connectionTimeout": 30
}
],
}