The find methods not working for me but in other project work fine .
import org.springframework.data.jpa.repository.JpaRepository;
import com.example.demo.entities.Contact;
public interface ContactRepository extends JpaRepository<Contact, Long>{
}
in my controller i call find one but give works.
@RequestMapping(value="/contact/{id}",method=RequestMethod.GET)
public Contact getContact(@PathVariable Long id){
return repo.findOne(id); //here give a error
}