Spring

[Spring] Loading desciptor for ~ 에러

Puft 2025. 2. 26. 09:21

스프링으로 게임프로젝트를 개발하던 중

DB를 폴더화 시키니 다음과 같은 에러가 발생했습니다.

 

Loading desciptor

 

디테일을 읽어보니

 

An internal error occurred during: "Loading descriptor for gameProject.". org.eclipse.emf.ecore.xmi.FeatureNotFoundException: Feature 'multipart-config' not found. (platform:/resource/gameProject/src/main/webapp/WEB-INF/web.xml, 41, 19)

 

Web.xml의 multipart-config가 없다는 내용이었습니다.

 

구글링을 해보니 multipart-config는 web-app viersion 3.0 이상부터 지원된는 것을 확인했습니다.

 

 

web.xml의 상단에 해당 코드를 추가해서

버전을 3.0으로 바꿔서 에러를 해결할 수 있었습니다.