의문 : model에서 선언한 변수들에 초기화를 해야하나?
public class TestModel {
private String test1;
private String test2 = "";
}
모델 안에서 클래스 선언을 했을 때 test1은 null로 나타남.
DB에 넣어 줄 때 null로 넣지 않으려고 사용함!
미미하지만 성능에는 좋지 않음
https://wakestand.tistory.com/92
https://namocom.tistory.com/742
반응형
'JAVA' 카테고리의 다른 글
모던 자바 인 액션 내용 정리 (0) | 2020.07.21 |
---|---|
Java Inner Class (0) | 2020.05.29 |
Java garbage collector (0) | 2020.05.15 |
if else case 성능차이 (0) | 2020.04.29 |
Java Resource File Path (0) | 2020.04.22 |