IntelliJ_IDEA

인텔리제이 설정

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

플러그인

key promoter : 단축키를 보여주는 플러그인
--> 별로임 삭제 함

Camelcase : 카멜케이스 변환 플러그인

Java Method Reference Diagram : 기본적으로 Ctrl+ALt+U(윈도우기반 단축키 기준)을 하면 UML을 보여주는데 이 플러그인을 설치하면 메소드 레퍼런스도 볼 수 있어요. UML을 볼때 연관 Class들을 source explorer 에서 선택한 상태에서 보면 유용합니다.

Nyan Progress Bar : 고양이 Progress Bar
-----

ctrl + E : 최근 작업 소스

shift + shift : 만능 서치
-----
windows

IDE_HOME\bin\<product>[bits][.exe].vmoptions

mac

/Applications/<Product>.app/Contents/bin
-----
SVN checkout 에러

Cannot load supported formats: Cannot run program "svn": CreateProcess error=2, The system cannot find the file specified

Settings -> Version Controll -> Subversion -> Use command line client 체크 해제
-----
프로퍼티 에디터
Settings -> Editor -> file encoding -> Transparent native-to-ascii conversion 체크
-----
VM 파라미터

-Xms256m
-Xmx2048m
-XX:ReservedCodeCacheSize=240m
-XX:+UseConcMarkSweepGC
-XX:SoftRefLRUPolicyMSPerMB=50
-Duser.name=kim se joung
-Dfile.encoding=UTF-8
-ea
-Dsun.io.useCanonCaches=false
-Djava.net.preferIPv4Stack=true
-XX:+HeapDumpOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow

-----
TOMCAT VM 파라미터
-----

-Dfile.encoding=UTF-8
-Dfile.client.encoding=UTF-8
-Dfile.encoding.override=UTF-8

-----
TOMCAT SSL 설정
-----

.IntelliJIdea2017.2\system\tomcat\

위에 폴더에 톰캣 설정 파일이 떨어진다.

그곳에 있는 server.xml을 수정하니 계속 설정을 다시 초기화 시켜서 수정이 되지 않는다

옵션에 있는 https 포트 설정은 왜 만들어 져있는지 모르겠다.

그럼 톰캣 실제 서버파일에 있는 server.xml을 수정해서 ssl 설정을 마무리 지었다.





참조