We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3210f8c commit 7d127acCopy full SHA for 7d127ac
APIJSON-Java-Server/APIJSONDemo-Presto/src/main/java/apijson/demo/DemoSQLConfig.java
@@ -50,10 +50,10 @@ public String getDBVersion() {
50
@JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息
51
@Override
52
public String getDBUri() {
53
- if (isPresto()) { // Presto 配置文档 https://prestodb.io/docs/current/installation/jdbc.html
+ if (isPresto()) { // Presto(PrestoDB) 配置文档 https://prestodb.io/docs/current/installation/jdbc.html#connecting
54
return "jdbc:presto://localhost:8099/mysql?SSL=false";
55
}
56
- if (isTrino()) {
+ if (isTrino()) { // Trino(PrestoSQL) 配置文档 https://trino.io/docs/current/client/jdbc.html#connecting
57
return "jdbc:trino://localhost:8099/mysql?SSL=false";
58
59
0 commit comments