How to set query timeout in Spring Boot using Mysql as Databse?
I am using Spring boot with Mysql. I have implemented Datasource and defined properties in application.xml file. I have a long running query: @Query(value - "select sleep(10)", nativeQuery=true) public void test(); in JPA repository methods. I want to implement query…