작성
·
29
0
DTO와 인증 서비스 2분 33초에서 35초 사이에 코드가 갑자기 생기는데요.
혹시 어떤 단축키 눌른건지 알 수 있을까요?
Alt + Insert눌러도 super까지 포함된 메소드는 나오지 않아서요.
public MemberDTO(String email, String pw, String nickname, boolean social, List<String> roleNames) {
super(
email,
pw,
roleNames.stream().map(str -> new SimpleGrantedAuthority("ROLE_"+str)).collect(Collectors.toList()));
this.email = email;
this.pw = pw;
this.nickname = nickname;
this.social = social;
this.roleNames = roleNames;
}