Some background:
I have a Java 1.6 webapp running on Tomcat 7. The database is MySQL 5.5. Previously, I was using Mysql JDBC driver 5.1.23 to connect to the DB. Ever
I am late, But If you are struggling through the following error and using datasource(javax.sql.DataSource):
The server time zone value 'CEST' is unrecognized or represents more than one time zone.
Set following line to get rid of the error:
MysqlDataSource dataSource = new MysqlDataSource();
dataSource.setServerTimezone("UTC");