I'm switching my Spring Boot+MySQL connection from Tomcat-based to HikariCP.
I read the documentation and I got confused. Here they say:
MysqlDataSource is known to be broken, use jdbcUrl configuration instead.
At the same time, at recomended settings site they say the opposite:
In order to get the best performance out of MySQL, these are some of our recommended settings.
dataSourceClassName=com.mysql.jdbc.jdbc2.optional.MysqlDataSource
dataSource.url=jdbc:mysql://localhost/database
dataSource.user=test
...
Did I miss something? I used MysqlDataSource and it seems to work, whats the deal here?