Isn't your database server located in your own computer? Replace the ip 67.169... to localhost in DB_URL constant.
In your test connection you used localhost as your hostname, you should do the same here.
Code:
public static final String DB_URL = "jdbc:mysql://localhost:3306/MoopleDEV?autoReconnect=true";
After replacing the connection ip, compile, make sure the .jar file was replaced and check if it works.
If you're willing to understand more about localhost, take a read in this link: https://www.ionos.com/digitalguide/s...how/localhost/