위와 같은 에러가 발생하면
프로젝트 안의 pom.xml에 추가적으로
코드를 입력해주면 해결된다.
참고로 코드를 추가할 때는
<build></build>
위의 "build" 코드 사이에 넣어주어야 한다.
pom.xml의 제일 하단 부분을 보면
바로 발견이 가능
1
2
3
4
5
6
7
8
9
10
11
|
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<warName>sample</warName>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
|
cs |
'Error' 카테고리의 다른 글
Problems During Content Assist (0) | 2020.09.22 |
---|---|
(using password: YES) java.sql.SQLException (0) | 2020.09.22 |
이클립스 복사 붙여넣기 응답없음 or 멈춤 (0) | 2020.09.18 |
The superclass javax.servlet.http.httpservlet was not found on the java build path - 이클립스 에러해결 (0) | 2020.09.18 |
'org.eclipse.jst.jee.server:mybatis' did not find a matching property. (1) | 2020.09.04 |