Consider using a password with 8 or more characters with mixed case letters, numbers and punctuation marks.
비밀번호를 대소문자, 특수문자, 숫자 포함하여 8글자 이상 설정하지 않아서 생긴 오류였고 비밀번호를 변경하니까 해결됨
runtimeOnly 'com.mysql:mysql-connector-j' //추가
쿼리(Query) : DB에게 수행을 요청하는 구문
insert into post (content, title) values (?, ?)
select p1_0.id, p1_0.content, p1_0.title from post p1_0
select ... from post where p1_0.id=?
update post set content=?, title=? where id=?
select ... from post where p1_0.id=?
delete from post where id=?
post 후 Workbench를 통해 sql문을 실행하여 테이블 확인하여 데이터가 잘 들어갔는지 확인함
put을 통해 게시글 내용과 제목을 수정 후 다시 sql문을 실행하여 데이터가 잘 바뀌었는지 확인함