![[Lombok] is prefix로 이름 붙인 boolean get 오류 해결하기](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fbe6gYo%2FbtrEvmQgokw%2Fk0QaNvsGKeHk8IAKP7gosK%2Fimg.png)
[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..