오류
[Spring] Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'best' not found. Available parameters are [arg1, arg0, param1, param2]
짱코딩러
2022. 10. 26. 14:58
파라미터값을 두개 이상 받아올때 나타나는 오류.
Mapper 클래스에 @Param이나 @RequestParam붙여주기.
public void bestSelect(Long reviewno, String best);
public void bestSelect(@Param("reviewno")Long reviewno, @Param("best")String best);