
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: Ambiguous handler methods mapped for HTTP path '/[path-name]'
IllegalStateException은 잘못된 때에 메소드가 불려갔을 때 발생하는 에러이다.
뒤에 적힌 Ambiguous handler methods mapped for HTTP path '/[path-name]'를 보니 한 가지 path에 매핑된 메소드가 여러 개인 게 문제인 것 같다.

나의 경우 이런 식으로 "/quitpage.action"이 중복되어 있었다.
다르게 수정해주니 잘 된다.