[Starve + Kyu] Mission5 - XHR과 AJAX#138
Open
Jiwon-JJW wants to merge 20 commits intocodesquad-members-2021:Jiwon-JJWfrom
Open
[Starve + Kyu] Mission5 - XHR과 AJAX#138Jiwon-JJW wants to merge 20 commits intocodesquad-members-2021:Jiwon-JJWfrom
Jiwon-JJW wants to merge 20 commits intocodesquad-members-2021:Jiwon-JJWfrom
Conversation
[Kyu] AbstractEntity 이용하여 Question 리팩토링
[Starve] Swagger 추가
ksundong
requested changes
Apr 2, 2021
Member
ksundong
left a comment
There was a problem hiding this comment.
안녕하세요! Starve & Kyu!! 리뷰어 Dion입니다.
5단계까지 정말 고생많으셨습니다. 재밌게 즐기셨나요?
웹 애플리케이션 리뷰
- 회원가입이 되지 않네요. 수정이 되면 다시 리뷰해드리겠습니다.
코드 관련 리뷰
- 대부분 깔끔하게 잘 작성해주셨습니다.
- 다만, 추상클래스의 사용에 있어서 좀 더 주의를 요하는 부분이 있는 것 같네요.
- NPE를 방어할 수 있는 형태로 코드를 작성해주는 습관을 들여주세요.
자세한 리뷰내용은 코멘트를 참고해주세요.
궁금한 점이나 도움이 필요한 부분, 이해가 되지 않는 부분 토론하고 싶은 부분은 코멘트 남겨주세요!
고생하셨습니다! 수정 요청 드리겠습니다~
Comment on lines
+30
to
+32
| testImplementation('org.springframework.boot:spring-boot-starter-test') { | ||
| exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' | ||
| } |
Member
There was a problem hiding this comment.
Spring Boot 2.4 버전부터는 vintage engine이 기본적으로 포함되어있지 않아서
exclude 사용해주지 않으셔도 됩니다!
Comment on lines
+27
to
+28
| implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2' | ||
| implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2' |
| public class SwaggerConfig { | ||
|
|
||
| @Bean | ||
| public Docket apiV2() { |
| .version("2.0") | ||
| .build(); | ||
| } | ||
| } No newline at end of file |
Member
There was a problem hiding this comment.
통행금지 표시가 있네요!
codesquad-members-2021/java-chess#9 (comment)
여기 참고해서 수정해주세요!
Comment on lines
+35
to
+37
| .termsOfServiceUrl("http://www-03.ibm.com/software/sla/sladb.nsf/sla/bm?Open") | ||
| .license("Apache License Version 2.0") | ||
| .licenseUrl("https://github.com/IBM-Bluemix/news-aggregator/blob/master/LICENSE") |
Comment on lines
+47
to
50
| if (!result.isValid()) { | ||
| model.addAttribute("errorMessage", result.getErrorMessage()); | ||
| return "user/login"; | ||
| } |
| $(".answer-write input[type=submit]").click(addAnswer); | ||
|
|
||
| function addAnswer(e) { | ||
| console.log("Hello World!"); |
| }; No newline at end of file | ||
| $(".answer-write input[type=submit]").click(addAnswer); | ||
|
|
||
| function addAnswer(e) { |
| console.log("Hello World!"); | ||
| e.preventDefault(); | ||
|
|
||
| var queryString = $(".answer-write").serialize(); |
Comment on lines
+23
to
+24
| function error() { | ||
| } |
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.
안녕하세요.
코드스쿼드 백엔드 과정 Starve입니다.
Kyu와 함께 짝 프로그래밍을 진행하며 미션 5를 완료하였습니다!
이번 코드도 잘 부탁드립니다!
배포 사이트
감사합니다!