Inflearn brand logo image
Inflearn brand logo image
채널톡 아이콘

인프런 커뮤니티 질문&답변

zzzzz님의 프로필 이미지

작성한 질문수 176

코드로 배우는 React with 스프링부트 API서버

단축키 질문입니다.

작성

·

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;
}

답변 1

0

구멍가게코딩단님의 프로필 이미지
구멍가게코딩단
지식공유자

아.. 그 부분은 미리 만들어 둔 코드를 복붙 한겁니다. 생성자를 만들 수는 있지만 원하는만큼 자세히 만드는 기능은 없습니다.