부산대 BE_문성민 2주차 과제 (1단계)#252
Open
Dalsungmin wants to merge 8 commits intokakao-tech-campus-2nd-step2:dalsungminfrom
Open
부산대 BE_문성민 2주차 과제 (1단계)#252Dalsungmin wants to merge 8 commits intokakao-tech-campus-2nd-step2:dalsungminfrom
Dalsungmin wants to merge 8 commits intokakao-tech-campus-2nd-step2:dalsungminfrom
Conversation
validation 의존성을 추가하고 입력을 검증할 추가(addProduct)기능과 수정(updateProduct)기능에 @Valid 어노테이션 추가
저번주 피드백에서 컨트롤러에서 레포지토리를 바로 호출하는거보다 서비스를 통해 레포지토리를 호출하는 것이 좋다고 하셔서 구현했습니다.
상품 이름은 공백을 포함하여 15자가 넘어가거나 비어있으면 에러가 발생하도록 처리
특수 문자 * 가능: ( ), [ ], +, -, &, /, _ * 그 외 특수 문자 사용 불가 이 조건 만족하지 않으면 에러 발생
"카카오"가 포함된 문구를 입력시 " '카카오'가 포함된 문구는 담당 MD와 협의한 경우에만 사용할 수 있습니다." 라는 에러 메시지 나타나게 구현
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.
궁금한점이 있습니다!
컨트롤러 getProductDetails에서 왜 없는 id로 검색했을때 ProductNotFoundException e로 안가고
Exception e로 가는지 어떻게 수정해야할지 궁금합니다.
getProductDetails과 getProductById 둘다 결국 서비스의 getProductById를 통해 레포지토리의 findById의 결과를 리턴하는건데 그럼 굳이 getProductById가 필요할까요? 어차피 화면에서 검색했을때 나오는 결과가 product-detail의 화면이기 때문에 필요 없을거 같긴 합니다...