-
Notifications
You must be signed in to change notification settings - Fork 39
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
[donggi] 스프링 카페 3단계 - DB에 저장하기 #149
Open
donggi-lee-bit
wants to merge
17
commits into
codesquad-members-2022:donggi-lee-bit
Choose a base branch
from
donggi-lee-bit:step3
base: donggi-lee-bit
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
[donggi] 스프링 카페 3단계 - DB에 저장하기 #149
donggi-lee-bit
wants to merge
17
commits into
codesquad-members-2022:donggi-lee-bit
from
donggi-lee-bit:step3
Conversation
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
- service에 연결된 repository를 Memory -> Jdbc로 변경하였습니다. - JdbcRepository에서 sql문을 이용하여 게시글 정보를 h2 데이터베이스로 보내주었습니다.
- articleForm에서 본문을 content로 받고 있어서 본문 내용이 저장되지 않던 오류를 수정하였습니다.
- 회원가입을 통해 등록한 사용자 정보를 H2 DB에 저장하였습니다.
- application.properties 에 sql 설정을 추가하여 프로그램 실행시schema.sql이 실행되어 테이블을 생성하도록 하였습니다.
- default 버전으로 java 8 로 설정되어있기에 java 11 버전을 명시해주었습니다.
- / 를 제거하였습니다.
- home.html을 초기화면으로 사용할 수 있어 index.html을 삭제하였습니다. - h2 db의 path를 추가하였습니다.
- @Autowired 생략 - Integer 로 받던 인자를 int 로 변경 - ArticleController 에서 HomeController 에 있는 중복 메서드 제거 - 의미 없는 빈 줄 삭제 - ArticleForm 의 toEntity 메서드를 static 으로 수행하던 걸 객체 스스로가 수행하도록 수정
- `*` 사용시 불필요한 컬럼명도 확인할 수 있어 구체적인 컬럼명을 기재하여 확인하도록 변경
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.
안녕하세요
donggi
입니다. 3단계 미션이 완료되어 리뷰 요청드립니다 😆 리뷰를 받을 때마다 쉽게 간과할 수 있는 부분을 한 번씩 짚고 여러 방면에서 생각하고 공부하여 배울 수 있는 것 같습니다. 항상 꼼꼼하게 코드 봐주셔서 감사합니다!!구현 내용
H2 데이터베이스 연동
게시글 데이터 저장하기
게시글 목록 구현하기
게시글 상세보기 구현하기
사용자 정보 DB에 저장
배포
Heroku
로 배포를 진행하고 README에 배포 URL을 기술한다.특이사항
Controller
를 테스트 하기 위해서Mock
에 대한 공부가 필요한 것 같아 배포와 2단계 리뷰 수정사항을 반영한 상태에서 먼저 PR 보내게 됐습니다. 이번 미션 제출 후 테스트 코드를 작성한 뒤 다음 미션을 진행하도록 하겠습니다.Heroku
배포를 하는 과정에서 에러를 해결하느라 여러 시도를 하게 됐는데 그 과정에서 의미 없을 수 있는 커밋이 여러 개 남게 되었습니다 😅BuildSet
을JVM
으로 해주고 있어 생긴 에러여서Gradle
로 수정하여 배포에 성공할 수 있었습니다..