@Deprecated annotation은 사용하지 않을 메소드, 즉 없어질거라고 알려주고 쓰지말라고 경고하는 의미를 담고있다
컴파일러에게 쓰지말라고 경고한다
BAD
//2020-10 이후 삭제 예정
public void oldMethod() {
..
}
GOOD
@Deprecated
public void oldMethod() {
..
}
'SpringBoot' 카테고리의 다른 글
[Spring boot] 서버 띄울때 UTC 시간으로 띄우기 (0) | 2021.02.01 |
---|---|
[Springboot] URL로 이미지 다운로드 (0) | 2020.12.23 |
QueryDSL like, contains (0) | 2020.10.27 |
[Intellij] test events were not received (0) | 2020.08.10 |
[Intellij] 디버깅이 너무 오래걸릴때 해결 방법 (1) | 2020.08.10 |