목록2024/04/02 (2)
사이먼's 코딩노트
[게시판 제작 ~ing]작성된 모든 코드는 저의 깃허브 리포지터리에서 확인하실 수 있습니다.리포지터리 주소 URL : https://github.com/psm817/full_stack_proj_2024_03 GitHub - psm817/full_stack_proj_2024_03Contribute to psm817/full_stack_proj_2024_03 development by creating an account on GitHub.github.com [article list와 article detail에서 작성자 이름 나오도록 수정]현재까지 구현된 article list는 DB에서 SELECT 문을 통해 조회하였을 때 번호, 조회, 제목은 모두 정상적으로 콘솔에 출력되지만, 작성자는 null 값이 출..
[게시판 제작 ~ing]작성된 모든 코드는 저의 깃허브 리포지터리에서 확인하실 수 있습니다.리포지터리 주소 URL : https://github.com/psm817/full_stack_proj_2024_03 GitHub - psm817/full_stack_proj_2024_03Contribute to psm817/full_stack_proj_2024_03 development by creating an account on GitHub.github.com [article write DB 연결]이번에는 기존에 구현되었던 List 배열인 articles를 사용하지 않고 DB와 직접 연결하여 article write 기능을 재구현 해봅시다.public void doWrite() { System.out.pr..