1. 테스트로 작성한 .jsp 페이지가 제대로 표시가 안되는 현상 발생
2. 해결법
pom.xml에 Dependency 추가
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
3. 결과
