Created
April 2, 2021 15:35
-
-
Save mmafrar/1ad4fe4db5a4be2ebe85e59e8fd9c71c to your computer and use it in GitHub Desktop.
Implementing Spring Boot MVC CRUD operations with JPA and JSP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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