Skip to content

Instantly share code, notes, and snippets.

@mmafrar
Created April 2, 2021 15:35
Show Gist options
  • Save mmafrar/1ad4fe4db5a4be2ebe85e59e8fd9c71c to your computer and use it in GitHub Desktop.
Save mmafrar/1ad4fe4db5a4be2ebe85e59e8fd9c71c to your computer and use it in GitHub Desktop.
Implementing Spring Boot MVC CRUD operations with JPA and JSP
package com.example.demo.repository;
import com.example.demo.model.Contact;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface ContactRepository extends JpaRepository<Contact, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment