The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. 이 에러가 나는 경우는 보통 경로의 문제이다. 대부분의 사람들은 tomcat의 context root의 경로가 틀렸기 때문에 경로를 제대로 못 찾아서 에러가 났다. 하지만 나는 제대로 설정했기 때문에 문제가 아니었다. 분명히 Application context가 "/"로 잘 설정되어 있는데 무엇이 문제였을까? 바로 IntelliJ의 프로젝트명.iml 파일에 경로가 잘못 설정되어 있었기 때문이다. SpringMVC로 구조를 바꾸고 나면 자동으로 이렇게 iml 파일이 작성되고 이를 기..