데이터베이스 설계 및 프로젝트 생성
MySQL workbench를 설치 한 후 접속해서 데이터베이스를 생성한다
create database board_crud;
use board_crud;
server.port=4000
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/board_crud?serverTimezone=UTC&characterEncoding=UTF-8
spring.datasource.username=[MySQL 사용자이름]
spring.datasource.password=[MySQL 비밀번호]
정상작동!!!
npx create-react-app board_client --template typescript
vscode로 프로젝트 파일 열어서
npm start
정상작동!!!