Tools/Visual Studio Code
[VScode] Visual Studio Code : Getter & Setter 자동완성 기능 ( 확장프로그램 Getter and Setter Generator )
모찌바라기
2022. 3. 17. 10:39
728x90
반응형
보통 우리가 DTO나 VO를 사용할 때 필요한 변수들을 선언하고 Getter & Setter를 사용하는데...
Eclipse나 IntelliJ에서 자주 사용되던 기능이 Generator이다.
한번에 Getter & Setter를 만들어주는데.. VScode에서는 Extension(확장)을 통해 확장프로그램을
설치해주면 사용이 가능하단다..
확장프로그램에 들어가서 Getter라고 검색해보자.
거기서 Getter and Setter Generator을 설치해주도록 하자.
package com.example.demo.service;
import java.io.Serializable;
public class indexVO implements Serializable{
private int commentId;
private String videoId;
private String content;
private String writer;
private String deleteAt;
private String createDate;
}
이런 VO가 있다고 하면 Getter & Setter를 자동완성 시키고 싶은 녀석들을 드래그 한 뒤
명령팔레트 ( F1 )을 누르고 명령팔레트에 Get만 검색하면 나오는
Generate get and set methods를 선택해준다. 그러면 자동으로 Getter & Setter가 작성되는 것을 확인 할 수 있다.
진짜 VScode는 확장프로그램이 잘되어 있는 것 같다.. 확장 프로그램을 잘 찾아서 잘 쓰는 것도 능력인 듯 싶다..
728x90
반응형