skip to Main Content

Dockerizing SpringBoot application with MySQL

My spring boot application is working fine when running it locally. But when I put that on docker it throws error saying that mysql connection cannot be made Error in the console srikulamedura-skm-server-1 | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) ~[spring-orm-6.0.9.jar!/:6.0.9] srikulamedura-skm-server-1 | at…

VIEW QUESTION

MYSQL// Did I perform sql optimization properly?

# index: `review_count`, `store_id`, `status`, `name`, `address` EXPLAIN ANALYZE SELECT store0_.name, store0_.status, store0_.name, store0_.address, category1_.name from store store0_ inner join category category1_ on store0_.category_id=category1_.category_id left outer join store_keyword storekeywo2_ on store0_.store_id=storekeywo2_.store_id left outer join keyword keyword3_ on storekeywo2_.keyword_id=keyword3_.keyword_id where store0_.review_count…

VIEW QUESTION
Back To Top
Search