Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 603 Bytes

problem_solving.md

File metadata and controls

28 lines (21 loc) · 603 Bytes

문제 해결

#목차

  • this unordered seed list will be replaced by the toc {:toc}

QueryDSL에서 DTO의 필드 값이 Enum타입 일 때 조회 방법

문제

  • QueryDSL로 해방 필드 'samgyeopsal'을 조회하고 싶은데 어떻게 조회할까?
public enum Menu {
    SAMGYEOPSAL (12000, "samgyeopsal"),
    SHUSI (15000, "shusi"),
}
public class DTO {
    private String restaurant;
    @Enumerated(EnumType.STRING)
    private Menu menu;  
}

DB String 값을 filed의 enum 타입으로 바꿀 순 없을까?