Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자동배포
- ANTIFRAGILE
- 오블완
- TIOBE
- 애널리틱스4
- docker
- java
- 르세라핌
- Python
- github
- spring
- JPA
- pat발급
- analytics4
- MariaDB
- EntityManager
- 티스토리챌린지
- 명령어
- git pat
- ci/cd
- Jenkins
- git branch 삭제
- gtihub
- db종류
- IntelliJ
- visual studio code
- UNION ALL
- jetbrain
- JPQL
Archives
- Today
- Total
hanker
JAVA - Entity to Map, Map to Entity 본문
반응형
○ Entity to Map
사용 예를 들기 위해서 User 클래스 생성
public class User {
private String name;
private String email;
// Getter, Setter
}
1. Reflection 사용
public static void main(String[] args) throws IllegalAccessException {
User user = new User();
user.setEmail("test@gmail.com");
user.setName("테스터");
Map<String, Object> map = entityToMapA(user);
System.out.println(map.toString());
}
public static Map<String, Object> entityToMapA(Object entity) throws IllegalAccessException {
Map<String, Object> map = new HashMap<>();
Field[] fields = entity.getClass().getDeclaredFields();
for (Field field : fields) {
field.setAccessible(true);
map.put(field.getName(), field.get(entity));
}
return map;
}
결과 :
2. Jackson 라이브러리 사용
// pom.xml 추가
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
</dependency>
// Gradle 추가
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'
// 버전은 각자 Spring, Java Version에 맞게 사용
public static void main(String[] args) throws Exception {
User user = new User();
user.setEmail("test@gmail.com");
user.setName("테스터");
Map<String, Object> map = entityToMapB(user);
System.out.println(map.toString());
}
public static Map<String, Object> entityToMapB(Object entity) throws Exception {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.convertValue(entity, Map.class);
}
결과 :
○ Map to Entity
1. Reflection 사용
public static void main(String[] args) throws Exception {
Map<String, Object> map = new HashMap<>();
map.put("name", "테스터");
map.put("email", "test@gmail.com");
User user = new User();
user = mapToEntity(map, User.class);
System.out.println("email = " + user.getEmail());
System.out.println("name = " + user.getName());
}
public static <T> T mapToEntityA(Map<String, Object> map, Class<T> clazz) throws Exception {
T entity = clazz.getDeclaredConstructor().newInstance();
for (Map.Entry<String, Object> entry : map.entrySet()) {
Field field = clazz.getDeclaredField(entry.getKey());
field.setAccessible(true);
field.set(entity, entry.getValue());
}
return entity;
}
결과 :
2. Jackson 라이브러리 사용
public static void main(String[] args) throws Exception {
Map<String, Object> map = new HashMap<>();
map.put("name", "테스터");
map.put("email", "test@gmail.com");
User user = new User();
user = mapToEntityB(map, User.class);
System.out.println("email = " + user.getEmail());
System.out.println("name = " + user.getName());
}
public static <T> T mapToEntityB(Map<String, Object> map, Class<T> clazz) throws Exception {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.convertValue(map, clazz);
}
결과 :
반응형
'JAVA' 카테고리의 다른 글
JAVA - 단일 역슬래시, 역슬래시 뒤 숫자 없애기 (1) | 2024.09.06 |
---|---|
JAVA - Timestamp to String (13자리) (0) | 2024.09.03 |
JAVA - 바코드 출력 (ZPL format for zebra printer) (0) | 2024.06.01 |
JAVA - Json 파싱(Parsing) [Gson] (0) | 2024.04.02 |
JAVA - 해당 월의 마지막날짜 구하기 (0) | 2023.12.30 |