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
- MYSQL
- HTML5
- java
- 한글
- @RequestBody
- 스크립트
- checbox
- RADIO
- SSL
- 전자정부 표준프레임워크
- maven
- Oracle
- exception
- switch
- jquery
- php
- 날짜
- 문자열
- spring form tag
- 네이버스마트 에디터
- 오라클
- 톰캣
- 호환성
- JSTL
- DB
- null
- json
- html
- 웹 플랫폼 설치 관리자
- 이클립스
Archives
- Today
- Total
개인적인 정리
json 데이타 출력시 한글이 깨지는 경우 본문
json 으로 데이타를 출력할 때 한글이 깨질 수 있다.
그럴경우 produces="text/plain;charset=UTF-8" 부분을 추가해준다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@RequestMapping(value="/jsonTest", produces="text/plain;charset=UTF-8")
@ResponseBody
public String jsonTest() throws Exception{
String result ="";
String msg ="";
String jsonString ="";
result ="한글출력도 OK";
msg ="English OK.";
jsonString = "{\"result\":\""+ result +"\",\"msg\":\""+ msg +"\"}";
return jsonString;
}
|
cs |
'전자정부표준프레임워크 > Exception 및 Error' 카테고리의 다른 글
java.lang.NoClassDefFoundError: org/apache/logging/log4j/util/ReflectionUtil (0) | 2021.12.16 |
---|---|
엘리먼트 내에서 속성의 qualified 이름들은 반드시 유일해야 합니다. (0) | 2021.02.24 |
Neither BindingResult nor plain target object for bean name 'searchVO' available as request attribute (0) | 2021.02.17 |
It is indirectly referenced from required .class files (0) | 2021.02.08 |
Keystore was tampered with, or password was incorrect (0) | 2021.01.26 |
Cannot paste the clipboard contents into the selected elements. (0) | 2020.09.19 |
org.apache.maven.plugins:maven-resources-plugin:jar:2.6 (0) | 2020.08.25 |
Received fatal alert: protocol_version (0) | 2020.08.25 |
Comments