spring

    [Spring_JAVA] @AllArgsConstructor 란? / 사용 이유

    [Spring_JAVA] @AllArgsConstructor 란? / 사용 이유

    @AllArgsConstructor 는 모든 필드 값을 파라미터로 받는 생성자를 만든다. @AllArgsConstructor 사용 시 EmailDTO dto = new EmailDTO(senderName, senderMail, receiverMail, subject, message); 생성가능 실제 사용 EmailDTO dto = new EmailDTO("SwimLover", "SwimLover", mem_email, "SwimLover 임시비번", ""); ex) DTO에 @AllArgsConstructor 를 임포트하니 ➡ 컨트롤러의 오류가 사라졌다!

    [JavaScript 에러] Uncaught SyntaxError : Unexpected end of input 에러 해결하기

    [JavaScript 에러] Uncaught SyntaxError : Unexpected end of input 에러 해결하기

    Eclipse로 Spring 작업 시 종종 일어나는 에러 🤯 🤯 상황 에러메세지 : Uncaught SyntaxError : Unexpected end of input 😎 해결방법 ➡ VSC(Visual Studio Code) 프로그램으로 열어서 확인하기 🤯 저는 VSC 원본 파일 항목이 없는데요!!!? 하시는 분들 집중!! 아래 링크를 따라가주세요 ~ :) https://dorothy-yang.tistory.com/168 [Eclipse ➡ VSC] Visual Studio Code 프로그램으로 파일열기 Visual Studio Code는 오타도 잘 잡아주고 태그도 자동 완성 기능이 잘 되어있는데,, 이클립스에서 작업하던 거 VSC로 열어서 작업할 수는 없나?!?! 있습니다!!! 🤔 현재 나의 상황 다..