Notice
Recent Posts
Recent Comments
Link
12-22 19:37
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- java
- Class<SpringJUnit4ClassRunner> cannot be resolved to a type
- 한글깨짐
- mysql한글깨짐
- jdbc연결확인
- 마크다운 테이블
- 취성패
- 오라클
- @Setter(onMethod_ = @Autowired) Error
- 마크다운 링크
- 오라클연습문제
- 스프링
- 마크다운 기본문법
- jdbc연결테스트코드
- java.lang.NoClassDefFoundError:org/springframework/core/annotation/MergedAnnotations
- HTTP 상태 415 – 지원되지 않는 Media Type
- git push
- 이클립스
- rest방식
- git오류
- lombok.jar
- ejected-non-fast-forward
- git
- 정보처리기사
- SQL
- oracle
- spring자바설정
- Oracle join
- SpringJUnit4ClassRunner
- 마크다운 리스트
Archives
- Today
- Total
study-project
[오류]web.xml is missing and <failOnMissingWebXml> is set to true 본문
스프링 설정시 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 설정에 가서 위의 내용을 추가한다
'TIL > Spring' 카테고리의 다른 글
| [오류]ERROR: org.mybatis.spring.mapper.MapperFactoryBean - Error while adding the mapper (0) | 2021.03.18 |
|---|---|
| [오류]spring Logger cannot be resolved to a type 해결 (0) | 2021.02.23 |
| [오류]java.lang.NoClassDefFoundError: org/springframework/core/annotation/MergedAnnotations (0) | 2021.02.17 |
| JDBC 연결확인을 위한 테스트 코드 (0) | 2021.02.17 |
| [오류]Class<SpringJUnit4ClassRunner> cannot be resolved to a type (0) | 2021.02.17 |
Comments