Feature/GitHub action (#23)

* feat: add release action

* feat: add checkstyle action
This commit is contained in:
vran
2022-02-23 13:27:30 +08:00
committed by GitHub
parent cfedddeb9e
commit fc4edfd636
4 changed files with 61 additions and 3 deletions

View File

@@ -33,7 +33,8 @@ public class App {
// this config is used by mysql
info.put("useInformationSchema", "true");
String url = "jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true";
String url = "jdbc:mysql://localhost:3306/demo?"
+ "useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true";
return DriverManager.getConnection(url, info);
}
}