반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다이나믹 프로그래밍
- 무료개발강의
- 백준자바
- 백트래킹
- 코딩공부
- 개발공부
- 시간 복잡도
- 빅오 표기법
- dp
- BFS
- 자바개념
- 동적계획법
- 백준알고리즘
- ☆
- 자바의정석연습문제풀이
- 브루트포스
- 자바공부
- ★
- 무료코딩강의
- Java개념
- 백준
- 알고리즘
- 자바의정석
- java
- 백준9단계
- 백준단계별로풀어보기
- 자바
- 자바의정석연습문제
- dfs
- 알고리즘공부
Archives
- Today
- Total
더 많이 실패하기
[Spring] org.springframework.beans.factory.UnsatisfiedDependencyException / [myBatis] The content of elements must consist of well-formed character data or markup 본문
정보/오류 예외
[Spring] org.springframework.beans.factory.UnsatisfiedDependencyException / [myBatis] The content of elements must consist of well-formed character data or markup
김발자~ 2023. 3. 8. 12:22반응형
org.springframework.beans.factory.UnsatisfiedDependencyException
1. Bean 에러
2. DB 설정 혹은 쿼리문 xml (myBatis)
The content of elements must consist of well-formed character data or markup

이런 식으로 조건 등에 부등호가 들어가면 뜨는 오류이다
이럴 땐
1
|
<![CDATA[부등호가 들어간 절]]>
|
cs |
위와 같이 감싸주면 된다
반응형