Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
JWT 토큰 검증을 위한 API 엔드포인트 추가. 토큰 검증은 필터에서 처리되므로 컨트롤러에 도달하면 검증 성공을 의미하여 204 응답을 반환.
- JWT 토큰 검증 엔드포인트
/auth/validate추가 - 로컬 환경에서 Neo4j 데이터베이스 초기화 기능 추가
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/main/java/com/sillim/recordit/member/controller/LoginController.java | JWT 토큰 검증을 위한 GET 엔드포인트 추가 |
| src/main/java/com/sillim/recordit/config/neo4j/LocalNeo4jInitializer.java | 로컬 프로파일에서 Neo4j 데이터 초기화 컴포넌트 추가 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
src/main/java/com/sillim/recordit/config/neo4j/LocalNeo4jInitializer.java
Outdated
Show resolved
Hide resolved
src/main/java/com/sillim/recordit/config/neo4j/LocalNeo4jInitializer.java
Show resolved
Hide resolved
1 task
- 라벨까지 삭제되도록 DB를 재생성
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
이슈 번호 (#331 )
요약
JWT Token 검증 API 엔드포인트 추가
(Local 환경) Neo4j DB 데이터 Initializer
LocalNeo4jInitializer구현 (Local 환경 한정으로 동작)