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
- axios
- mutations
- azure
- 음양더하기
- Express.js
- Emit
- 연동
- v-if
- Reduce
- kibana
- programmers
- v-for
- Login
- JavaScript
- IntelliJ
- includes
- getters
- Vue.js
- vuex
- state
- sns로그인
- 템플릿문법
- 콘솔한글깨짐
- javscript
- javascipt
- KAKAO
- mixins
- react
- v-on
- node.js
Archives
- Today
- Total
공부용
IntelliJ Console 한글 깨짐 현상 해결 본문
해결방법
#1 - Editor 의 File Encoding 수정
1. CTRL + ALT +S 로 IntelliJ Settings 메뉴 호출
2. Editor > File Encodings 로 이동
- Global Encdoing: UTF-8
- Project Encoding: UTF-8
Default encoding for properties files: UTF-8
#2 - Tomcat의 VM Options 추가
1. 상단 Run -> Edit Configuration
2. Tomcat > Server JVM Options에 아래 내용 입력
-Dfile.encoding=UTF-8 ("!!! 주의 - 포함")
#3 - IntelliJ 의 vm options 수정
1. Shift 빠르게 2번 클릭 후 Edit Custom VM Options 선택
2. 최하단에 아래 내용 입력
-Dfile.encoding=UTF-8 ("!!! 주의 - 포함")
IntelliJ 재실행
Comments