[error] org.apache.ibatis.binding.BindingException: Parameter '파라미터' not found.

LEE YUJIN·2023년 9월 21일
0

org.apache.ibatis.binding.BindingException: Parameter '파라미터' not found. Available parameters are [arg1, arg0, param1, param2....]

    // 조회
    List<Map<String, Object>> doSearch(@Param("strStartDate")String strStartDate,
                                       @Param("strEndDate") String strEndDate,
                                       @Param("strCoffee") String strCoffee,
                                       @Param("strKind") String strKind);

-> @Param 붙여서 해결

Controller -> sqlmapper -> jsp 순으로 확인해보았지만 계속 에러 발생
Dao에서 @Param 붙여주니 해결되었다.

profile
개발 공부노트

0개의 댓글