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 |
Tags
- node.js
- Vue.js
- javscript
- javascipt
- programmers
- vuex
- v-on
- KAKAO
- axios
- sns로그인
- react
- includes
- IntelliJ
- 콘솔한글깨짐
- v-for
- Express.js
- azure
- 연동
- 음양더하기
- Reduce
- Emit
- mutations
- 템플릿문법
- mixins
- state
- Login
- getters
- kibana
- JavaScript
- v-if
Archives
- Today
- Total
목록IntelliJ (2)
공부용
IntelliJ & Apache Tomcat 연동 및 url 수정
1. Apache Tomcat 추가 상단 File -> Settings -> Application Server Apache Tomcat 추가 2. 우측 상단 Tomcat 버전 클릭 -> Edit Configurations 3. URL : http://localhost:8090/~~~ -> http://localhost:8090 4. 같은 창내에서 Deployment -> 아래에 있는 Application Context -> '/' 수정 *comment url 수정이 제일 오래걸렸다. IntelliJ는 처음이라 어떻게 수정해야하는지 많이 헤맸다.
카테고리 없음
2021. 4. 27. 15:13
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번 클릭 후 Ed..
카테고리 없음
2021. 4. 27. 15:08