Merge pull request #91 from glours/fix_sparkjava_sample

Fix SparkJava-mysql backend bootstrap error
master
Guillaume Lours 4 years ago committed by GitHub
commit 147c99df68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -40,7 +40,7 @@
<dependency> <dependency>
<groupId>com.sparkjava</groupId> <groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId> <artifactId>spark-core</artifactId>
<version>2.8.0</version> <version>2.9.2</version>
</dependency> </dependency>
<dependency> <dependency>

@ -64,7 +64,7 @@ public class App {
private static Connection connect() throws Exception { private static Connection connect() throws Exception {
for (int i = 0; i < 60; i++) { for (int i = 0; i < 60; i++) {
try { try {
return DriverManager.getConnection("jdbc:mysql://db/example?useSSL=false", "root", Files.lines(Paths.get("/run/secrets/db-password")).findFirst().get()); return DriverManager.getConnection("jdbc:mysql://db/example?allowPublicKeyRetrieval=true&useSSL=false", "root", Files.lines(Paths.get("/run/secrets/db-password")).findFirst().get());
} catch (CommunicationsException ex) { } catch (CommunicationsException ex) {
Thread.sleep(1000L); Thread.sleep(1000L);
continue; continue;

@ -40,7 +40,7 @@
<dependency> <dependency>
<groupId>com.sparkjava</groupId> <groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId> <artifactId>spark-core</artifactId>
<version>2.8.0</version> <version>2.9.2</version>
</dependency> </dependency>
</dependencies> </dependencies>

Loading…
Cancel
Save