Notice
Recent Posts
Recent Comments
Link
05-30 06:30
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 이클립스
- git
- Oracle join
- git오류
- @Setter(onMethod_ = @Autowired) Error
- 스프링
- 취성패
- git push
- java.lang.NoClassDefFoundError:org/springframework/core/annotation/MergedAnnotations
- 오라클
- 정보처리기사
- 마크다운 리스트
- SpringJUnit4ClassRunner
- 마크다운 기본문법
- jdbc연결확인
- Class<SpringJUnit4ClassRunner> cannot be resolved to a type
- spring자바설정
- jdbc연결테스트코드
- rest방식
- mysql한글깨짐
- ejected-non-fast-forward
- 마크다운 링크
- lombok.jar
- 한글깨짐
- SQL
- 오라클연습문제
- oracle
- HTTP 상태 415 – 지원되지 않는 Media Type
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