![[Lombok] is prefix로 이름 붙인 boolean get 오류 해결하기](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fbe6gYo%2FbtrEvmQgokw%2FAAAAAAAAAAAAAAAAAAAAABIAcnmCImhfJSF0D9ItiJXI21aulTeub-36APHReszp%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DUz9XV0b2UJLg7C8Y2%252BCt7t2A8KY%253D)
[Lombok] is prefix로 이름 붙인 boolean get 오류 해결하기
문제 내용: DTO의 boolean 이 import 되지 않아 T/F 값을 활용할 수 없음 해결 방법: boolean -> Boolean 으로 타입 변경, is prefix를 제거하는 방향으로 변수 이름 변경 오류 상황 PTableDto.java 안에 정의한 $Execution class 를 활용하려고 하였다. @Getter @Setter @AllArgsConstructor @NoArgsConstructor public static class Execution { private int id; private String execPlanId; private int rulesIdCount; private int tableNameCount; private int columnIdCount; private Stri..