24.02.01 Web Server 구현 - 게시판/list/insert/update/viewCount/replyCount
--1교시-- 어제에 이어서 수업하는 웹 페이지 주소: http://localhost:8080/jw/bbs/user/list 다음 작업을 위해 먼저 할 일 : 사용자 가입을 통한 목록 증가시키기 6명 -> 12명 사용자 수를 세는 코드 작성 // for pagination int totalUsers = bSvc.getBoardCount();// 유저의 명수 출력 int totalPages = (int) Math.ceil(totalUsers * 1.0 / bSvc.COUNT_PER_PAGE); // 유저 목록 페이지 출력 ex> 12일 때 2 페이지 출력 List pageList = new ArrayList(); for (int i = 1; i
2024.02.22