2

I want to use ObjectDB in my Spring Boot application. How should I configure the application.yml file?

I don't want to add persistence.xml into my application. Is that possible?

Chris
  • 5,751
  • 9
  • 39
  • 56

1 Answers1

3

You can follow this tutorial: http://spring.io/guides/gs/accessing-data-jpa/

with adjustments to ObjectDB, as explained on this forum thread: http://www.objectdb.com/database/forum/860

ObjectDB
  • 1,294
  • 7
  • 8
  • I got new error. "Unsupported auto value type java.io.Serializable for field org.springframework.data.jpa.domain.AbstractPersistable.id" It seems like ObjectDB doesn't support generic ID. – Chris Oct 24 '14 at 13:29