Currently the collections will be created when repository.save() is called if not already existed. Exceptions will be thrown if queries(e.g. repository.findAll()) were called before save because the tables do not exist.
I was expecting the tables are created on spring startup so that findAll() will return empty collections, like what hibernate does.
If I missed something in configuration, please tell.
- ArangoDB version: 3.3.14
- arangodb-spring-data version: 3.1.1
Currently the collections will be created when
repository.save()is called if not already existed. Exceptions will be thrown if queries(e.g.repository.findAll()) were called beforesavebecause the tables do not exist.I was expecting the tables are created on spring startup so that
findAll()will return empty collections, like what hibernate does.If I missed something in configuration, please tell.