Spring-Boot 웹 페이지 만들기 (2)
·
개발/Spring-Boot
기초 HTML 화면 구성- 초기 접속 웹 페이지 index.html- 회원 가입 진행 페이지 signUp.html- 로그인 후 페이지 main.html 인터넷 검색 후 맘에 드는 템플릿을 구해 붙여 넣기로 하면된다. 기본 적인 경로 설정- resources  ⌞ static    ⌞ css      ⌞ main.css    ⌞ js      ⌞ main.js  ⌞ templates    ⌞ index.html    ⌞ main.html    ⌞ signUp.html index.html signUp.html 로그인 전에 회원가입 정보는 이름, 비밀번호, 아이디, 전화번호 정도로 구성하였다. 회원가입 정보를 DB에 저장하고, 로그인 시 회원가입 정보를 이용하여 로그인 하는 방식으로 구현할 예정이다. 웹 소스..
Spring-Boot 웹 페이지 만들기 (1)
·
개발/Spring-Boot
개발 환경- mac book air m1- vscode - java version 17- spring boot version 3.4.0- mysql -> 11.6.2-MariaDB Dependency    implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'    implementation 'org.springframework.boot:spring-boot-starter-jdbc'    implementation 'org.springframework.boot:spring-boot-starter-sec..