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
- DB
- JSTL
- Oracle
- HTML5
- php
- jquery
- maven
- switch
- 호환성
- 날짜
- 이클립스
- checbox
- MYSQL
- 전자정부 표준프레임워크
- 네이버스마트 에디터
- spring form tag
- 웹 플랫폼 설치 관리자
- 오라클
- json
- java
- 스크립트
- html
- 톰캣
- RADIO
- SSL
- @RequestBody
- exception
- null
- 문자열
- 한글
Archives
- Today
- Total
개인적인 정리
org.springframework.context.NoSuchMessageException: No message found under code 'debug.properties.filename' for locale 'ko_KR'. 본문
전자정부표준프레임워크/Exception 및 Error
org.springframework.context.NoSuchMessageException: No message found under code 'debug.properties.filename' for locale 'ko_KR'.
yeon.Biju 2022. 6. 20. 16:30org.springframework.context.NoSuchMessageException: No message found under code 'debug.properties.filename' for locale 'ko_KR'.
xml 파일을 클래스 파일에서 불러오는 가운데 위와 같은 오류가 났다.
그래서 아래와 같이 xml 파일에 추가를 하니 에러가 나지 않은 경우가 있었다.
1
2
3
4
5
6
7
8
9
10
|
<bean name="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="useCodeAsDefaultMessage">
<value>true</value>
</property>
<property name="basenames">
<list>
<value>classpath:/egovframework/egovProps/globals</value>
</list>
</property>
</bean>
|
cs |
'전자정부표준프레임워크 > Exception 및 Error' 카테고리의 다른 글
Comments