Hi,
I'm not overly familiar with MySQL but it seems sometihng is wrong with the timezone:
Quote:
Caused by: java.sql.SQLException: The server time zone value 'Hora est?ndar central (M?xico' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
This is a post on stackoverflow that seems related to your problem:
http://stackoverflow.com/questions/7605 ... connectionIn particular, this paragraph:
Quote:
t's possible MySQL my complain that the server time zone is ambiguous. For example, if your database is set to use EST, there might be several possible EST time zones in Java, so you can clarify this for mysql-connector by telling it exactly what the database time zone is:
String url = "jdbc:mysql://localhost/mydb?useLegacyDatetimeCode=false&serverTimezone=America/New_York";
You only need to do this if it complains.
I haven't tried it so I'm not sure it will work.
Good luck