Notice
Recent Posts
Recent Comments
Link
09-12 00:12
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
관리 메뉴

study-project

[오류]web.xml is missing and <failOnMissingWebXml> is set to true 본문

TIL/Spring

[오류]web.xml is missing and <failOnMissingWebXml> is set to true

귤식빵 2021. 2. 18. 15:13

스프링 설정시 java 설정을 이용할때는 root-context.xml ,web.xml, servlet-context.xml 이 필요없어서 삭제하는데 

이때 pom.xml 에 web.xml 이 없다고 말해줘야한다 

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>3.2.0</version>
				<configuration>
					<failOnMissingWebXml>false</failOnMissingWebXml>
				</configuration>
			</plugin>

pom.xml plugin 설정에 가서 위의 내용을 추가한다

Comments