막 이것저것 해보면서 한참 찾아다니다가 어떤블로그 가보니 이런글이 있더라..
디폴트 생성자 있지?
디폴트생성자 지우면 돼..
이거때문이 냥이 3 4.1 5.5 6.0 다 돌려깔아보며 삽질을 장장 3시간 넘게 했는데
ㅠ.ㅠ얼마나 허탈하면 반말로 적었을까싶어서 직접 해봤는데 ㄹㅇ 됨... 개소름...
public class ProductMgr {
private static ProductMgr instance = new ProductMgr();
public static ProductMgr getInstance(){
return instance;
}
/*private ProductMgr(){}*/
딴건 생성자 그대로 다 있는데 이건 왜지랄이지;; 노이해
넷빈즈에여??