skip to Main Content

Reactjs – Application fails to start when I add a custom method in Repository interface

My application runs fine when it doesn't include any custom method in Repository. The moment I add a custom repo method in repo interface, it gives exceptions and application fails to start. package com.library.repo; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query;…

VIEW QUESTION
Back To Top
Search