DB를 직접 다룰 때의 문제점❗️public class User { private Long id; private String username; private String contents;} 만약 위와 같은 객체 데이터를 DB에서 관리해야 한다고 할 때 복잡한 진행과정을 거쳐야 합니다.1. DB테이블 만들기create table user ( id bigint not null auto_increment, contents varchar(500) not null, username varchar(255) not null, primary key (id)); 2. 애플리케이션에서 SQL 작성 String sql = "INSERT INTO user (u..