Why Spring Boot 2.0 application does not run schema.sql?

后端 未结 5 2073
抹茶落季
抹茶落季 2020-12-09 01:54

While I was using Spring Boot 1.5, on application startup Hibernate executed schema.sql file located in /resources folder when appropriate configuration is

5条回答
  •  臣服心动
    2020-12-09 02:34

    I was able to make application run only after excluding Hikary CP like that:

    
        org.springframework.boot
        spring-boot-starter-data-jpa
        
            
                com.zaxxer
                HikariCP
            
        
    
    

    Please, see the issue here

提交回复
热议问题