- 
                Notifications
    You must be signed in to change notification settings 
- Fork 39
Open
Labels
type: enhancementA general enhancementA general enhancement
Description
I'm trying to use @Sql annotation for initializing the db schema like this:
@Sql(scripts = ["/schema.sql"])
(the code is in Kotlin here)
But it seems it is only executed after spring context in initialized. So, if my components rely on loading the db in initialization then it fails. For example, if I want to use the db in @PostConstruct method of my component:
@Component
class MyService(val personRepository: PersonRepository) {
    @PostConstruct
    fun init() {
        val persons = personRepository.findAll()
        println("Counted persons: " + persons.count())
    }
    ...
then it fails during Spring context initialization due to missing table. This is because schema.sql is only executed after the initialization.
I also tried to no avail:
- specifying the executionPhase: @Sql(scripts = ["/schema.sql"], executionPhase = Sql.ExecutionPhase.BEFORE_TEST_CLASS)
- use InitializingBean.afterPropertiesSetinstead of@PostConstructfor component initialization
- use spring.jpa.defer-datasource-initialization=truein properties (link)
Metadata
Metadata
Assignees
Labels
type: enhancementA general enhancementA general enhancement