according to spring documentation
http://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.htmlimport.sql file should be executed on starup, however it is not in my case.
This is how my project catalog lookslike
and this is my application.properties:
Code:
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.jpa.hibernate.ddl-auto="none"
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect
spring.jpa.show-sql=true
What am i doing wrong?