반응형
프로젝트 설정의 Artifacts에서 Output Layout에 스프링관련 jar파일을 lib폴더에 옮겨주거나,
maven을 쓰고 있다면 pom.xml에서 사용할 스프링 관련 dependency를 추가해주면 해결
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.3.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.3.RELEASE</version>
</dependency>
반응형