Interpreter 사용실행이 필요할 때 기계어로 변환하는 Interpreter(인터프리터)를 사용한다. 이는 마치 동시 통역과 같다. 데이터란?정보의 집합으로, 숫자, 텍스트, 이미지, 음성 등의 형태로 나타낼 수 있다. 이러한 데이터는 컴퓨터나 기타 디지털 장치에서 수집되고 저장되며, 분석되거나 가공되어 유용한 정보를 제공한다. 변수란?데이터가 저장되어 있는 메모리 공간이다. 변수를 사용하는 이유?데이터를 재사용하기 위한 목적으로 프로그램을 보다 효율적으로 관리할 수 있다.변수 선언 및 초기화 변수 선언 = 데이터 초깃값 ex) number = 2024 변수 작명법- 영문 사용- 첫 문자는 소문자로- 가급적 데이터의 의미를 파악할 수 있는 명사 사용- Carmel 표기법 또는 Snake 표기법 사용..
register.jsp 글쓰기 제목 작성자 내용 파일 업로드 등록 취소 detail.jsp No. 제목 작성자 작성일 ${bvo.readCount } 수정일 내용 수정 삭제 목록 ${authEmail } 등록 등록 Writer 댓글등록일 content 댓글 더보기 ${authEmail } 등록 닫기 boardComment.js console.log('boardComment.js in~!!'); console.log(bnoVal); console.log(userEmail); document.getElementById('cmtPostBtn').addEventListener('click',()=>{ const cmtText = document.getElementById('cmtText'); if(cmtText..
CustomAuthMemberService.java package com.basicWeb.www.security; import javax.inject.Inject; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.core.userdetails.UsernameNotFoundException; import com.basicWeb.www.repository.MemberDAO; import lombok.RequiredArgsConstructor; im..
register.jsp 회원가입 E-mail Password Nickname SignUp MemberController.java package com.basicWeb.www.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import com.basicWeb.www.security.MemberVO; import com.bas..
MemberController.java package com.basicWeb.www.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import com.basicWeb.www.service.MemberService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @Slf4j @Controller @RequiredArgsConstructor @Re..