source:
src/main/java/com/example/repository/BandRepository.java
Last change on this file was a51a591, checked in by , 14 months ago | |
---|---|
|
|
File size: 331 bytes |
Rev | Line | |
---|---|---|
[a51a591] | 1 | package com.example.repository; |
2 | ||
3 | import com.example.model.Band; | |
4 | import org.springframework.data.jpa.repository.JpaRepository; | |
5 | import org.springframework.stereotype.Repository; | |
6 | ||
7 | import java.util.List; | |
8 | ||
9 | @Repository | |
10 | public interface BandRepository extends JpaRepository<Band, Integer> { | |
11 | List<Band> findAllByName (String name); | |
12 | ||
13 | } |
Note:
See TracBrowser
for help on using the repository browser.