How to initialize schema in spring-sessiona JDBC
问题 I'm using Spring Boot 2.0.x, Hibernate and Spring Session Jdbc with Mysql 5.7. I'm working under development environment, so Hibernate is configured to generate schemas every time: spring.jpa.hibernate.ddl-auto=create-drop And it works fine, but I have a problem with Spring Session... I tried set initialize-schema , but it doesn't work. spring.session.jdbc.initialize-schema=always Is it possible to auto generate full schema (all entities and SPRING_SESSION)? It doesn't work for me with MySQL