There is no PasswordEncoder mapped for the id "null"
상황 발생
PasswordEncoder의 matches 메서드를 이용해 원문과 인코딩된 문장을 비교할 때 인코딩 값으로 null 이 들어온 경우 java.lang.IllegalArgumentException이 발생하면서 메시지 출력됨.
// selected.getUpass() 값이 null인 경우에 발생함
if (pEncoder.matches(user.getUpass(), selected.getUpass())) {
selected.setUpass("");
}
대책
전달된 파라미터에 null 값이 없는지 확인