반응형 mongodb컬렉션삭제1 [소경관] : 등록한 차량 및 주민 정보 수정과 삭제 로직 구현하기 차량 정보와 같이 등록한 주민이나 방문자, 무단 주차자의 정보를 삭제하고 수정할 수 있는 페이지와 로직을 구현했다. @GetMapping("/updateCar") public String updateCarPage(Model model) throws Exception { List carDTOList = iCarListService.getFullCarList(); UpdateCarListVo updateCarListVo = new UpdateCarListVo(); updateCarListVo.setCarDtoList(carDTOList); model.addAttribute("carDTOList", carDTOList); model.addAttribute("updateCarListVo", updateCarLi.. 2022. 5. 25. 이전 1 다음 반응형