Conversation
pci2676
reviewed
May 16, 2019
| return ResponseEntity.ok(flag); | ||
| } | ||
|
|
||
| @GetMapping("/findByUsingEmail/{email}") |
Contributor
There was a problem hiding this comment.
url은 이렇게 서술하는 느낌일일 필요가 없을것 같아
| return new Docket(DocumentationType.SWAGGER_2) | ||
| .select() | ||
| .apis(RequestHandlerSelectors.any()) // 현재 RequestMapping으로 할당된 모든 URL 리스트를 추출 | ||
| .paths(PathSelectors.ant("/api/**")) // 그중 /api/** 인 URL들만 필터링 |
| import org.springframework.web.bind.annotation.*; | ||
|
|
||
| @RestController | ||
| @RequestMapping("/account") //경로 |
| } | ||
| AccountChangeNameResDto accountChangeNameResDto = new AccountChangeNameResDto(input_name); | ||
|
|
||
| //삭제하고 다시넣어주나? |
Contributor
There was a problem hiding this comment.
삭제하고 다시 넣으면 안됑
너가 repository를 이용해서 가져온 객체의 값을 바꾸면 jpa의 더티체크란 기능덕에 자동으로 값이 변경되서 저장돼
| } | ||
|
|
||
| @Transactional | ||
| public AccountFindAllUserDto findAllUser() { |
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.
풀리퀘안했네!