-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
Binary file modified
BIN
-21 Bytes
(45%)
board_exam_project-master/.gradle/7.1.1/dependencies-accessors/dependencies-accessors.lock
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
board_exam_project-master/.gradle/7.1.1/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified
BIN
-21 Bytes
(45%)
board_exam_project-master/.gradle/7.1.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
board_exam_project-master/.gradle/7.1.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified
BIN
-21 Bytes
(45%)
board_exam_project-master/.gradle/7.1.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified
BIN
-21 Bytes
(45%)
board_exam_project-master/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+269 Bytes
(180%)
...oject-master/build/classes/java/main/com/study/board/repository/FreeboardRepository.class
Binary file not shown.
Binary file modified
BIN
+283 Bytes
(110%)
...xam_project-master/build/classes/java/main/com/study/board/service/FreeboardService.class
Binary file not shown.
This file contains 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
Binary file modified
BIN
+1 Byte
(100%)
board_exam_project-master/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
This file contains 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
7 changes: 7 additions & 0 deletions
7
board_exam_project-master/src/main/java/com/study/board/repository/FreeboardRepository.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
package com.study.board.repository; | ||
|
||
import com.study.board.entity.Freeboard; | ||
import com.study.board.entity.Pdf; | ||
import com.study.board.entity.User; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
import java.util.List; | ||
|
||
@Repository | ||
public interface FreeboardRepository extends JpaRepository<Freeboard, Integer> { | ||
|
||
List<Freeboard> findAllByUserId(Long userId); //마이페이지에서 유저가 작성한 자유게시판 글들을 찾을 때 사용하는 함수 | ||
} |
This file contains 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
This file contains 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