I am trying to deploy a Spring-Boot application with Service accessing a JpaRepository which is connecting to PostgreSQL DB
Spring-Boot application
Service
JpaRepository
PostgreSQL DB
Spring is not aware of your entity. You need to denote MySpringBootApplication class with @EntityScan("your.entities.package")
MySpringBootApplication
@EntityScan("your.entities.package")