Skip to content

TechWonLee/MvcProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

👋 Spring MVC 게시판 프로젝트

설명

✨기간
2024.06 ~

🎯목표
(1) 프로젝트 초기 생성 및 설정과 CRUD
(2)파일업로드
(3)소켓통신을 활용한 채팅기능

🎲세부기능
(1) 세션활용 로그인 (2)글 작성 후 작성자만 수정 수정,삭제 기능 부여 (3)파일 업로드 (4)채팅

I code with

(1) Java (2)Spring (3)JavaScript (4) Jquery (5)Mysql

쿼리 내용

(1) CREATE DATABASE woncoding DEFAULT CHARACTER SET utf8;

(2) GRANT ALL PRIVILEGES ON woncoding.* TO 'won'@'localhost';

(3) CREATE TABLE userinfo ( userid VARCHAR(50) NOT NULL PRIMARY KEY, password VARCHAR(50) NOT NULL, name VARCHAR(50) NOT NULL, email VARCHAR(50), join_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP );

(4) CREATE TABLE BOARD ( seq INT AUTO_INCREMENT PRIMARY KEY, userid VARCHAR(50) NOT NULL, title VARCHAR(50) NOT NULL, content VARCHAR(1000) NOT NULL, name VARCHAR(50) NOT NULL, write_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP, view_cnt INT NOT NULL, CONSTRAINT fk_userinfo FOREIGN KEY (userid) REFERENCES userinfo(userid) );

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published