- 프로젝트 정보
Java: 14
DB: MariaDB
- 서버 및 DB정보 설정
application.yml
http://localhost:18090/swagger-ui.html
src/test/http-request/api-user.http
CREATE TABLE user
(
id varchar(255) NOT NULL,
password varchar(255) NOT NULL,
CONSTRAINT uix_username UNIQUE (id)
);