Files
snippets/datasource-config-yml.code-snippets
2025-04-17 15:56:06 +08:00

13 lines
405 B
Plaintext

{
"Jpa config yml": {
"prefix": "datasource-config",
"scope": "spring-boot-properties-yaml",
"body": [
"datasource:",
"\turl: jdbc:${1|postgresql,mariadb|}://${2:localhost}:${3|5432,3306|}/${4:database}",
"\tusername: ${5|postgres,root|}",
"\tpassword: ${6:xxxxxx}",
],
"description": "datasource-config",
}
}