Skip to content

Commit

Permalink
[docs] APIResponse에 사용시 주의사항 주석 추가
Browse files Browse the repository at this point in the history
- Jackson의 ObjectMapper와 함께 사용하기 위해서는 data로 들어오는 변수에 Getter가 필수적으로 있어야한다는 내용을 주석으로 추가
  • Loading branch information
Hyeon-Uk committed Aug 12, 2024
1 parent 6ae13e7 commit 5f0a4f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/camp/woowak/lab/web/api/utils/APIResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

import org.springframework.http.HttpStatus;

/**
* APIResponse를 Jackson의 ObjectMapper와 함께 사용하려면,
* Generic Type의 {@code data}에는 Getter 메서드가 필요합니다.
*/
public class APIResponse<T> {
private final T data;
private final int status;
Expand Down

0 comments on commit 5f0a4f7

Please sign in to comment.