-
Notifications
You must be signed in to change notification settings - Fork 20
[신민경] 웹 서버 기타 기능 구현 #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
shinminkyoung1
wants to merge
80
commits into
softeerbootcamp-7th:shinminkyoung1
Choose a base branch
from
shinminkyoung1:task3-3
base: shinminkyoung1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[신민경] 웹 서버 기타 기능 구현 #241
shinminkyoung1
wants to merge
80
commits into
softeerbootcamp-7th:shinminkyoung1
from
shinminkyoung1:task3-3
Conversation
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.
완료 작업 목록
버그데이 대비 추가 기능 구현
주요 고민과 해결 과정
(?) 이동되지 않고 무한루프에 빠짐
articleDao.selectLatest()를 호출하고 있는데 사용자가 [이전 글]을 눌러서?id=10으로 들어와도, 코드에서 항상selectLatest()(가장 최신글)만 가져오게 되어 있다면 계속 똑같은 글만 보여주거나 로직이 꼬이게 됨→ URL에 id 파라미터로 id의 글을 가져오고, 없으면 최신글을 가져오도록 로직을 분기
ArticleIndexHandler
기존에는 리다이렉트를
response.sendRedirect(Config.MYPAGE);로 치환자를 사용했음→ 정확한 리다이렉트 페이지 경로로 수정해 myPageHandler을 호출할 수 있게 수정하여 해결
AI에 도움받은 부분