-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/#4 #5
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
Merged
Feat/#4 #5
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5b76683
:sparkles: feat: ์๋ต ๊ตฌ์กฐ ์ถ๊ฐ
kingmingyu ad6eb8f
:sparkles: feat: ์ค์จ๊ฑฐ ์ค์ ์ถ๊ฐ
kingmingyu 0eaa53e
:sparkles: feat: ์ปจํธ๋กค๋ฌ ๋ฐ ๋๋ ํฐ๋ฆฌ ๊ตฌ์กฐ ์์ ์ถ๊ฐ
kingmingyu 565d94c
:sparkles: feat: ๋๋ ํฐ๋ฆฌ ์์ ๋ฐ yamlํ์ผ ์ญ์
kingmingyu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
6 changes: 6 additions & 0 deletions
6
...java/com/whereyouad/WhereYouAd/domain/example/application/dto/request/ExampleRequest.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.application.dto.request; | ||
|
|
||
| public record ExampleRequest( | ||
| String name | ||
| ) { | ||
| } |
16 changes: 16 additions & 0 deletions
16
...va/com/whereyouad/WhereYouAd/domain/example/application/dto/response/ExampleResponse.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.application.dto.response; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domain.example.persistence.entity.ExampleEntity; | ||
|
|
||
| public record ExampleResponse( | ||
| Long id, | ||
| String name | ||
| ) { | ||
| public static ExampleResponse from(ExampleEntity example) { | ||
| return new ExampleResponse( | ||
| example.getId(), | ||
| example.getName() | ||
| ); | ||
| } | ||
| } | ||
|
|
Empty file.
Empty file.
Empty file.
34 changes: 34 additions & 0 deletions
34
src/main/java/com/whereyouad/WhereYouAd/domain/example/domain/service/ExampleService.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.domain.service; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domain.example.application.dto.response.ExampleResponse; | ||
| import com.whereyouad.WhereYouAd.domain.example.exception.ExampleException; | ||
| import com.whereyouad.WhereYouAd.domain.example.exception.code.ExampleErrorCode; | ||
| import com.whereyouad.WhereYouAd.domain.example.persistence.entity.ExampleEntity; | ||
| import com.whereyouad.WhereYouAd.domain.example.persistence.repository.ExampleRepository; | ||
| import lombok.AccessLevel; | ||
| import lombok.RequiredArgsConstructor; | ||
| import org.springframework.stereotype.Service; | ||
| import org.springframework.transaction.annotation.Transactional; | ||
|
|
||
| @Service | ||
| @Transactional(readOnly = true) | ||
| @RequiredArgsConstructor(access = AccessLevel.PROTECTED) | ||
| public class ExampleService { | ||
|
|
||
| private final ExampleRepository exampleRepository; | ||
|
|
||
| @Transactional | ||
| public Long save(String name) { | ||
| ExampleEntity example = ExampleEntity.builder() | ||
| .name(name) | ||
| .build(); | ||
| return exampleRepository.save(example).getId(); | ||
| } | ||
|
|
||
| public ExampleResponse findById(Long id) { | ||
| return ExampleResponse.from( | ||
| exampleRepository.findById(id) | ||
| .orElseThrow(() -> new ExampleException(ExampleErrorCode.EXAMPLE_NOT_FOUND)) | ||
| ); | ||
| } | ||
| } |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/whereyouad/WhereYouAd/domain/example/exception/ExampleException.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.exception; | ||
|
|
||
| import com.whereyouad.WhereYouAd.global.exception.AppException; | ||
| import com.whereyouad.WhereYouAd.global.exception.BaseErrorCode; | ||
|
|
||
| public class ExampleException extends AppException { | ||
| public ExampleException(BaseErrorCode code) { | ||
| super(code); | ||
| } | ||
| } |
18 changes: 18 additions & 0 deletions
18
src/main/java/com/whereyouad/WhereYouAd/domain/example/exception/code/ExampleErrorCode.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.exception.code; | ||
|
|
||
| import com.whereyouad.WhereYouAd.global.exception.BaseErrorCode; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Getter; | ||
| import org.springframework.http.HttpStatus; | ||
|
|
||
| @Getter | ||
| @AllArgsConstructor | ||
| public enum ExampleErrorCode implements BaseErrorCode { | ||
|
|
||
| EXAMPLE_NOT_FOUND(HttpStatus.NOT_FOUND, "EXAMPLE-001", "์ํฐํฐ๋ฅผ ์ฐพ์ ์ ์์ต๋๋ค.") | ||
| ; | ||
|
|
||
| private final HttpStatus httpStatus; | ||
| private final String code; | ||
| private final String message; | ||
| } |
27 changes: 27 additions & 0 deletions
27
src/main/java/com/whereyouad/WhereYouAd/domain/example/persistence/entity/ExampleEntity.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.persistence.entity; | ||
|
|
||
| import jakarta.persistence.*; | ||
| import lombok.AccessLevel; | ||
| import lombok.Builder; | ||
| import lombok.Getter; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| @Entity | ||
| @Getter | ||
| @Table(name = "example_entity") | ||
| @NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
| public class ExampleEntity { | ||
|
|
||
| @Id | ||
| @GeneratedValue(strategy = GenerationType.IDENTITY) | ||
| @Column(name = "example_id") | ||
| private Long id; | ||
|
|
||
| @Column(name = "name", nullable = false) | ||
| private String name; | ||
|
|
||
| @Builder | ||
| public ExampleEntity(String name) { | ||
| this.name = name; | ||
| } | ||
| } |
Empty file.
7 changes: 7 additions & 0 deletions
7
...va/com/whereyouad/WhereYouAd/domain/example/persistence/repository/ExampleRepository.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.persistence.repository; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domain.example.persistence.entity.ExampleEntity; | ||
| import org.springframework.data.jpa.repository.JpaRepository; | ||
|
|
||
| public interface ExampleRepository extends JpaRepository<ExampleEntity, Long> { | ||
| } |
38 changes: 38 additions & 0 deletions
38
src/main/java/com/whereyouad/WhereYouAd/domain/example/presentation/ExampleController.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.presentation; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domain.example.application.dto.request.ExampleRequest; | ||
| import com.whereyouad.WhereYouAd.domain.example.application.dto.response.ExampleResponse; | ||
| import com.whereyouad.WhereYouAd.domain.example.domain.service.ExampleService; | ||
| import com.whereyouad.WhereYouAd.domain.example.presentation.docs.ExampleControllerDocs; | ||
| import com.whereyouad.WhereYouAd.global.response.DataResponse; | ||
| import com.whereyouad.WhereYouAd.global.response.DefaultIdResponse; | ||
| import io.swagger.v3.oas.annotations.Operation; | ||
| import io.swagger.v3.oas.annotations.responses.ApiResponses; | ||
| import lombok.AccessLevel; | ||
| import lombok.RequiredArgsConstructor; | ||
| import org.springframework.http.ResponseEntity; | ||
| import org.springframework.web.bind.annotation.*; | ||
|
|
||
| @RestController | ||
| @RequiredArgsConstructor(access = AccessLevel.PROTECTED) | ||
| @RequestMapping("/api/examples") | ||
| public class ExampleController implements ExampleControllerDocs { | ||
|
|
||
| private final ExampleService exampleService; | ||
|
|
||
| @PostMapping | ||
| public ResponseEntity<DataResponse<DefaultIdResponse>> save(@RequestBody ExampleRequest request) { | ||
| return ResponseEntity.ok( | ||
| DataResponse.created( | ||
| DefaultIdResponse.of(exampleService.save(request.name())) | ||
| ) | ||
| ); | ||
| } | ||
|
|
||
| @GetMapping("/{id}") | ||
| public ResponseEntity<DataResponse<ExampleResponse>> findById(@PathVariable Long id) { | ||
| return ResponseEntity.ok( | ||
| DataResponse.from(exampleService.findById(id)) | ||
| ); | ||
| } | ||
| } |
33 changes: 33 additions & 0 deletions
33
...ava/com/whereyouad/WhereYouAd/domain/example/presentation/docs/ExampleControllerDocs.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| package com.whereyouad.WhereYouAd.domain.example.presentation.docs; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domain.example.application.dto.request.ExampleRequest; | ||
| import com.whereyouad.WhereYouAd.domain.example.application.dto.response.ExampleResponse; | ||
| import com.whereyouad.WhereYouAd.global.response.DataResponse; | ||
| import com.whereyouad.WhereYouAd.global.response.DefaultIdResponse; | ||
| import io.swagger.v3.oas.annotations.Operation; | ||
| import io.swagger.v3.oas.annotations.responses.ApiResponses; | ||
| import org.springframework.http.ResponseEntity; | ||
| import org.springframework.web.bind.annotation.PathVariable; | ||
| import org.springframework.web.bind.annotation.RequestBody; | ||
|
|
||
| public interface ExampleControllerDocs { | ||
| @Operation( | ||
| summary = "์์ ์ด๋ฆ ์ ์ฅ API", | ||
| description = "์ด๋ฆ์ ๋ฐ์์์ DB์ ์ ์ฅํฉ๋๋ค." | ||
| ) | ||
| @ApiResponses({ | ||
| @io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "200", description = "์ฑ๊ณต"), | ||
| @io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "400", description = "์คํจ") | ||
| }) | ||
| public ResponseEntity<DataResponse<DefaultIdResponse>> save(@RequestBody ExampleRequest request); | ||
|
|
||
| @Operation( | ||
| summary = "์์ ์ด๋ฆ ์กฐํ API", | ||
| description = "id๊ฐ์ ํด๋นํ๋ ์ด๋ฆ์ ๋ฐํํฉ๋๋ค." | ||
| ) | ||
| @ApiResponses({ | ||
| @io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "200", description = "์ฑ๊ณต"), | ||
| @io.swagger.v3.oas.annotations.responses.ApiResponse(responseCode = "400", description = "์คํจ") | ||
| }) | ||
| public ResponseEntity<DataResponse<ExampleResponse>> findById(@PathVariable Long id); | ||
| } |
39 changes: 39 additions & 0 deletions
39
src/main/java/com/whereyouad/WhereYouAd/global/config/SwaggerConfig.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| package com.whereyouad.WhereYouAd.global.config; | ||
|
|
||
| import io.swagger.v3.oas.models.Components; | ||
| import io.swagger.v3.oas.models.OpenAPI; | ||
| import io.swagger.v3.oas.models.info.Info; | ||
| import io.swagger.v3.oas.models.security.SecurityRequirement; | ||
| import io.swagger.v3.oas.models.security.SecurityScheme; | ||
| import io.swagger.v3.oas.models.servers.Server; | ||
| import org.springframework.context.annotation.Bean; | ||
| import org.springframework.context.annotation.Configuration; | ||
|
|
||
| @Configuration | ||
| public class SwaggerConfig { | ||
|
|
||
| @Bean | ||
| public OpenAPI swagger() { | ||
| Info info = new Info() | ||
| .title("Where you AD API Document") | ||
| .description("Where you AD(๋์ ๊ด๊ณ ๋) ํ๋ก์ ํธ API ๋ช ์ธ์") | ||
| .version("0.0.1"); | ||
|
|
||
| // JWT ํ ํฐ ํค๋ ๋ฐฉ์ | ||
| String securityScheme = "JWT TOKEN"; | ||
| SecurityRequirement securityRequirement = new SecurityRequirement().addList(securityScheme); | ||
|
|
||
| Components components = new Components() | ||
| .addSecuritySchemes(securityScheme, new SecurityScheme() | ||
| .name(securityScheme) | ||
| .type(SecurityScheme.Type.HTTP) | ||
| .scheme("bearer") | ||
| .bearerFormat("JWT")); | ||
|
|
||
| return new OpenAPI() | ||
| .info(info) | ||
| .addServersItem(new Server().url("/")) | ||
| .addSecurityItem(securityRequirement) | ||
| .components(components); | ||
| } | ||
| } |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/whereyouad/WhereYouAd/global/exception/AppException.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| package com.whereyouad.WhereYouAd.global.exception; | ||
|
|
||
| import lombok.Getter; | ||
|
|
||
| @Getter | ||
| public class AppException extends RuntimeException { | ||
|
|
||
| private final BaseErrorCode errorCode; | ||
|
|
||
| public AppException(BaseErrorCode errorCode) { | ||
| super(errorCode.getMessage()); | ||
| this.errorCode = errorCode; | ||
| } | ||
| } |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/whereyouad/WhereYouAd/global/exception/BaseErrorCode.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| package com.whereyouad.WhereYouAd.global.exception; | ||
|
|
||
| import org.springframework.http.HttpStatus; | ||
|
|
||
| public interface BaseErrorCode { | ||
| HttpStatus getHttpStatus(); | ||
| String getCode(); | ||
| String getMessage(); | ||
| } |
25 changes: 25 additions & 0 deletions
25
src/main/java/com/whereyouad/WhereYouAd/global/exception/ErrorCode.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| package com.whereyouad.WhereYouAd.global.exception; | ||
|
|
||
|
|
||
| import lombok.AllArgsConstructor; | ||
| import org.springframework.http.HttpStatus; | ||
|
|
||
| import lombok.Getter; | ||
|
|
||
| @Getter | ||
| @AllArgsConstructor | ||
| public enum ErrorCode implements BaseErrorCode{ | ||
|
|
||
| //400 | ||
| BAD_REQUEST(HttpStatus.BAD_REQUEST, "์๋ชป๋ ์์ฒญ์ ๋๋ค.", "COMMON-001"), | ||
| INVALID_PARAMETER(HttpStatus.BAD_REQUEST, "์์ฒญ ํ๋ผ๋ฏธํฐ๊ฐ ์๋ชป๋์์ต๋๋ค.", "COMMON-002"), | ||
| NOT_FOUND(HttpStatus.NOT_FOUND, "์ฐพ์ ์ ์์ต๋๋ค.", "COMMON-003"), | ||
|
|
||
| //500 | ||
| INTERNAL_SERVER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "์๋ฒ ๋ด๋ถ์์ ์๋ฌ๊ฐ ๋ฐ์ํ์์ต๋๋ค.", "COMMON-004"), | ||
| ; | ||
|
|
||
| private final HttpStatus httpStatus; | ||
| private final String message; | ||
| private final String code; | ||
| } |
41 changes: 41 additions & 0 deletions
41
src/main/java/com/whereyouad/WhereYouAd/global/exception/GlobalExceptionHandler.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| package com.whereyouad.WhereYouAd.global.exception; | ||
|
|
||
| import com.whereyouad.WhereYouAd.global.response.ErrorResponse; | ||
| import org.springframework.http.HttpStatus; | ||
| import org.springframework.http.ResponseEntity; | ||
| import org.springframework.web.bind.annotation.ExceptionHandler; | ||
| import org.springframework.web.bind.annotation.RestControllerAdvice; | ||
|
|
||
|
|
||
| import jakarta.servlet.http.HttpServletRequest; | ||
| import lombok.extern.slf4j.Slf4j; | ||
|
|
||
|
|
||
| @Slf4j | ||
| @RestControllerAdvice | ||
| public class GlobalExceptionHandler { | ||
|
|
||
| // ์ฒ๋ฆฌ๋์ง ์์ ๋ชจ๋ ์์ธ๋ฅผ ์ก๋ ํธ๋ค๋ฌ | ||
| @ExceptionHandler(Exception.class) | ||
| public ResponseEntity<ErrorResponse> handleAllException(Exception e, HttpServletRequest request) { | ||
| log.error("์ฒ๋ฆฌ๋์ง ์์ ์์ธ ๋ฐ์: ", e); | ||
| log.error("์๋ฌ๊ฐ ๋ฐ์ํ ์ง์ {}, {}", request.getMethod(), request.getRequestURI()); | ||
| ErrorResponse errorResponse = ErrorResponse.of( | ||
| ErrorCode.INTERNAL_SERVER_ERROR, | ||
| request | ||
| ); | ||
| return ResponseEntity | ||
| .status(HttpStatus.INTERNAL_SERVER_ERROR) | ||
| .body(errorResponse); | ||
| } | ||
|
|
||
| @ExceptionHandler(AppException.class) | ||
| public ResponseEntity<ErrorResponse> handleAppCustomException(AppException e, HttpServletRequest request) { | ||
| log.error("AppException ๋ฐ์: {}", e.getErrorCode().getMessage()); | ||
| log.error("์๋ฌ๊ฐ ๋ฐ์ํ ์ง์ {}, {}", request.getMethod(), request.getRequestURI()); | ||
| ErrorResponse errorResponse = ErrorResponse.of(e.getErrorCode(), request); | ||
| return ResponseEntity | ||
| .status(e.getErrorCode().getHttpStatus()) | ||
| .body(errorResponse); | ||
| } | ||
| } |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/whereyouad/WhereYouAd/global/response/BaseResponse.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| package com.whereyouad.WhereYouAd.global.response; | ||
|
|
||
| import java.time.LocalDateTime; | ||
|
|
||
| import org.springframework.http.HttpStatus; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonFormat; | ||
|
|
||
| import lombok.Getter; | ||
|
|
||
| @Getter | ||
| public abstract class BaseResponse { | ||
|
|
||
| private final String status; | ||
|
|
||
| protected BaseResponse(HttpStatus status) { | ||
| this.status = status.getReasonPhrase(); | ||
| } | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3: usecase๋ ์ ๋ฒ ์ปจ๋ฒค์ ํ์ ๋ ์ฌ์ฉํ์ง ์๊ธฐ๋ก ๋ ผ์ํ๋ ๊ฒ ๊ฐ์์ ๋นผ๋ ๋ ๊ฒ ๊ฐ์ต๋๋ค!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๋นผ๊ฒ ์ต๋๋ค!