[Practice] 사용자 관련 API 만들기 (6)
1. 문제 회원 로그인 히스토리 기능을 구현하는 API 2. 풀이 - schema.sql ... create table LOGS ( ID BIGINT auto_increment primary key, TEXT CLOB, REG_DATE TIMESTAMP ); - ApiLoginController.java package com.example.jpa.sample.user.controller; import com.example.jpa.sample.common.exception.BizException; import com.example.jpa.sample.common.model.ResponseResult; import com.example.jpa.sample.notice.model.ResponseError; i..
2021.04.18