web/Spring

lombok 사용시 Generating equals/hashCode implementation 에러 수정방법

반응형

lombok 사용할 때 다음과 같은 에러를 본적이 있을 것이다.


[에러내용]

Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type.


이 에러는 상속을 받은 자식클래스에 발생하는 에러로서 다음과 같이 해결해줄 수 있다


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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.wedul.wedulpos.user.dto;
 
import org.apache.ibatis.type.Alias;
 
import com.wedul.common.dto.CommonDto;
import com.wedul.common.util.HashUtil;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * User정보 Dto 
 * 
 * @author wedul
 * @date 2017. 11. 4.
 * @name UserDto
 */
@Alias("UserDto")
@Data
@EqualsAndHashCode(callSuper=false)
public class UserDto extends CommonDto {
    private String email;
    private String password;
    private boolean isadmin;
    
    public UserDto() {}
    
    public UserDto(String email) {
        this.email = email;
    }
    
    public UserDto(String email, String password) {
        this.email = email;
        this.password = password;
    }
    
    public UserDto(String email, String password, boolean isadmin) {
        this.email = email;
        this.password = password;
        this.isadmin = isadmin;
    }
    
    public String getEcPassword() {
        return HashUtil.sha256(this.password);
    }
    
}
 
cs




반응형