
Incompatibility with Flyway 7.8.2. and newer
TheE opened this issue ยท 0 comments
Description of the Problem
Flyway 7.8.2 cannot be used with MyWarp, since they fail to load the database support. The problem seems to be caused by Flyway switching to using the service loader for database support (flyway/flyway@2188380).
I do not yet know if the problem is related to limitations of Bukkit's class loader or missing dependencies (Flyway introduced the flyway-community-db-support
package with 7.8.2).
For now, the problem has been fixed by downgrading Flyway (see #330).
Log Output
[13:26:54] [Server thread/INFO]: [MyWarp] Enabling MyWarp v3.1.2-SNAPSHOT+GitHub_Action-b93.git-5cec6ad3f2
[13:26:54] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.bukkit.util.jdbc.SingleConnectionDataSource} Initializing connection.
[13:26:54] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.bukkit.util.jdbc.SingleConnectionDataSource} Connecting to jdbc:h2:./plugins/MyWarp/warps with properties {password=mywarp, user=mywarp},
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Scanning for classpath resources at 'classpath:db/callback' ...
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Determining location urls for classpath:db/callback using ClassLoader org.bukkit.plugin.java.PluginClassLoader@59f2e49e ...
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Unable to resolve location classpath:db/callback.
[13:26:55] [Server thread/INFO]: [MyWarp] {io.github.mywarp.mywarp.internal.flyway.core.internal.license.VersionPrinter} Flyway Community Edition 7.10.0 by Redgate
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.util.FeatureDetector} AWS SDK available: false
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.util.FeatureDetector} Google Cloud Storage available: false
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Scanning for classpath resources at 'classpath:migrations/h2' ...
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Determining location urls for classpath:migrations/h2 using ClassLoader org.bukkit.plugin.java.PluginClassLoader@59f2e49e ...
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Scanning URL: jar:file:/Users/paul/MyWarp/Server/Spigot%201.17/plugins/mywarp-bukkit-3.1.2-SNAPSHOT-all.jar!/migrations/h2
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.util.FeatureDetector} JBoss VFS v2 available: false
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Found resource: migrations/h2/
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Found resource: migrations/h2/V1__Initial-version.sql
[13:26:55] [Server thread/INFO]: [MyWarp] [DEBUG] {io.github.mywarp.mywarp.internal.flyway.core.internal.scanner.classpath.ClassPathScanner} Scanning for classes at classpath:migrations/h2
[13:26:55] [Server thread/ERROR]: [MyWarp] {io.github.mywarp.mywarp.bukkit.MyWarpPlugin} Failed to initialize warp storage.
[13:26:55] [Server thread/ERROR]: [MyWarp] {io.github.mywarp.mywarp.bukkit.MyWarpPlugin} Unable to initialize the SQL tables.
io.github.mywarp.mywarp.warp.storage.TableInitializationException: Unable to initialize the SQL tables.
at io.github.mywarp.mywarp.warp.storage.WarpStorageBuilder.build(WarpStorageBuilder.java:171)
at io.github.mywarp.mywarp.MyWarp.initialize(MyWarp.java:112)
at io.github.mywarp.mywarp.bukkit.MyWarpPlugin.onEnable(MyWarpPlugin.java:113)
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263)
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
at org.bukkit.craftbukkit.v1_17_R1.CraftServer.enablePlugin(CraftServer.java:495)
at org.bukkit.craftbukkit.v1_17_R1.CraftServer.enablePlugins(CraftServer.java:409)
at net.minecraft.server.MinecraftServer.loadWorld(MinecraftServer.java:608)
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:264)
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:987)
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:307)
at java.base/java.lang.Thread.run(Thread.java:831)
Caused by: io.github.mywarp.mywarp.internal.flyway.core.api.FlywayException: Unsupported Database: H2 1.4
at io.github.mywarp.mywarp.internal.flyway.core.internal.database.DatabaseTypeRegister.getDatabaseTypeForConnection(DatabaseTypeRegister.java:141)
at io.github.mywarp.mywarp.internal.flyway.core.internal.jdbc.JdbcConnectionFactory.<init>(JdbcConnectionFactory.java:69)
at io.github.mywarp.mywarp.internal.flyway.core.Flyway.execute(Flyway.java:510)
at io.github.mywarp.mywarp.internal.flyway.core.Flyway.migrate(Flyway.java:170)
at io.github.mywarp.mywarp.warp.storage.WarpStorageBuilder.build(WarpStorageBuilder.java:169)
... 12 more
[13:26:55] [Server thread/ERROR]: [MyWarp] {io.github.mywarp.mywarp.bukkit.MyWarpPlugin} MyWarp is unable to continue and will be disabled.
[13:26:55] [Server thread/INFO]: [MyWarp] Disabling MyWarp v3.1.2-SNAPSHOT+GitHub_Action-b93.git-5cec6ad3f2
Affected Version
The problem was present in development builds 65 to 92.