Mybatis @Param1 MyBatis) org.apache.ibatis.binding.BindingException:Parameter 'count' not found. Available parameters are [arg1, arg0, param1, param2] - @Param 을 써라.. MyBatis를 이용한 SQL Mapper는 불러오는 메서드당 하나의 파라미터를 읽는다.. 이게 무슨 의미인가 하면 // ClothesMapper.. //추가 public Long insert(ClothesVO vo); //상세(목록) public ClothesVO read(Long cno); //수정 public boolean update(ClothesVO vo); //삭제 public boolean delete(Long cno); //전체 목록 public List getList(Criteria cri); // 조회수 증가 및 감소 public void updateViewCnt(@Param("cno")Long cno, @Param("count")int count); public int getTotal.. 2021. 3. 20. 이전 1 다음