Adding Schema name to entity in Spring data?

前端 未结 2 1685
终归单人心
终归单人心 2021-01-19 09:54

I am getting an error when using an Oracle DB and Spring Data. The error is:

ORA-00942: table or view does not exist
2条回答
  •  北海茫月
    2021-01-19 10:45

    The @Table annotation provides the schema attribute:

    @Table(name = "Dog", schema = "Vet")
    

提交回复
热议问题