Problems 탭에서 해당 오류가 나서
프로젝트 Properties > Project Facets 에 Dynamic Web Module 을 확인하니
4.0으로 되어 있다 .근데 3.1로 수정하면 될꺼 같은데 수정이 안됨
<해결>
해당 project 경로 내에 .settings으로 이동해서
org.eclipse.wst.common.project.facet.core.xml > 파일을 연다.
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="wst.jsdt.web"/>
<installed facet="java" version="1.8"/>
<installed facet="wst.jsdt.web" version="1.0"/>
<installed facet="jst.web" version="4.0"/> <--- 여기를 3.0으로 수정
</faceted-project>
그 다음 프로젝트우클릭 > Maven > Update Project 하면 해결
(추후 해당 포스트 정리)
'DEV > Spring' 카테고리의 다른 글
서로 다른 model 매핑 (ex) a모델의 값을 b모델로 ) (0) | 2021.10.07 |
---|---|
스프링 세팅 (0) | 2020.11.16 |
[해결] java.lang.IlleagalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test (0) | 2020.06.01 |
[Spring] 스프링 Interceptor 설정 (0) | 2020.04.12 |
[SpringBoot] 스프링 시큐리티, OAuth2로 구글로그인 구현 예제 (0) | 2020.02.26 |