-ea

-server

-Xms2048m

-Xmx2048m

-Xss24m

-XX:+UseCompressedOops

-XX:ReservedCodeCacheSize=1024m

-XX:+UseG1GC 

-XX:MaxGCPauseMillis=50

-XX:GCPauseIntervalMillis=200

-XX:ConcGCThreads=4

-XX:SoftRefLRUPolicyMSPerMB=50 

-Dsun.io.useCanonCaches=false 

-Djava.net.preferIPv4Stack=true

-Djava.net.preferIPv4Addresses=true

-Dfile.encoding=UTF-8

-Dfile.client.encoding=UTF-8


posted by 뚱2

링크: https://www.jetbrains.com/idea/help/setting-log-options.html


<fully-qualified-class-name>.<method-name>(<file-name>:<line-number>)


<!-- logback.xml 설정 -->

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

    <encoder>

        <pattern>

            %d{HH:mm:ss.SSS} [%-5level] [%thread:%X{username}] %msg - at %c.%M\(%F:%L\)%n

        </pattern>

    </encoder>

</appender>


posted by 뚱2

링크: https://www.jetbrains.com/idea/help/tuning-intellij-idea.html

posted by 뚱2

링크: https://www.jetbrains.com/idea/help/stashing-and-unstashing-changes.html


Stashing과 Cleaning: https://git-scm.com/book/ko/v2/Git-도구-Stashing과-Cleaning

posted by 뚱2

링크: https://www.jetbrains.com/idea/help/typescript-support.html

posted by 뚱2

링크: http://apple.stackexchange.com/questions/163218/use-kaleidoscope-as-external-merge-tool-in-android-studio-intellij-idea

posted by 뚱2

링크: https://confluence.jetbrains.com/display/IDEADEV/Getting+Started+with+Plugin+Development

posted by 뚱2

인텔리제이가 참 디테일하게 검사를 해준다.

하지만 어느 순간은 너무 과하다 할 정도로 검사를 한다.

제일 심한게 현재 프로젝트에서 Hibernate를 사용하는데 어노테이션을 사용하는 부분에서 매번 빨간 밑줄이 ㅡㅡ;




이럴때 Inspections 옵션(Unresolved database references in annotations)을 체크 해제하면 된다.



posted by 뚱2

링크: https://intellij-support.jetbrains.com/entries/23455956-Selecting-the-JDK-version-the-IDE-will-run-under

posted by 뚱2



* Mac을 기준으로

Preferences -> Editor -> Editor Tabs -> Mark modified tabs with asterisk -> [체크]


posted by 뚱2

링크: http://www.sjune.net/archives/2021

posted by 뚱2

링크: http://mrkdev.tistory.com/5


CheckStyle-IDEA를 빼고는 다 사용해 봤는데 모두 정말 유용한 Plugin 이다.

posted by 뚱2

링크: http://www.jetbrains.com/idea/documentation/migration_faq.html

posted by 뚱2

링크: http://hadihariri.com/2014/01/06/intellij-idea-minimal-survival-guide/

posted by 뚱2

링크: http://zeroturnaround.com/rebellabs/getting-started-with-intellij-idea-as-an-eclipse-user/

posted by 뚱2

링크: http://devnet.jetbrains.com/thread/285876


위 링크와 다르게 13.1에서는 Menu -> Navigate -> Select In ... 이다.

단축키 수정해서 맞게 사용하자

기본은(?) Alt+F1+1 이다.


난 Source라는 의미로 Alt+S로 사용중

posted by 뚱2

대부분 프로젝트는 개발환경과 배포 환경의 JRE를 맞춰서 개발합니다.

그런데 공통부분을 개발하거나 프레임워크 작업을 하게 되면은 아무래도 여러 JRE 버전을 테스트 하고 싶을때가 있습니다.

또한 프로젝트 컴파일 환경과 배포환경을 다르게 할때도 발생합니다.


Eclipse에서는 각 Tomcat별로 JRE를 다르게 해서 잘 사용했었는데 IntelliJ IDEA13에서는 한참 찾아헤맸습니다.




(* 맥 기준으로 작성되었습니다.)

Run/Debug Configurations을 선택합니다.


1. Use alternative JRE를 체크합니다.

2. DropBox에서 필요한 JRE를 선택합니다. 

    (* 저는 1.6.0, 1.7.0_45, 1.8.0 3개가 설치되어 있네요)

3. Apply 클릭

4. OK 클릭




posted by 뚱2

맥과 윈도우의 idea.vmoptions 위치가 다릅니다.


* 윈도우

32 bit : “설치경로/bin/idea.exe.vmoptions”

64 bit : “설치경로/bin/idea64.exe.vmoptions”


* 맥

"~/Library/Preferences/IntelliJIdea13/idea.vmoptions" 를 수정해 주면 됩니다.


제가 사용하는 옵션

-Xms1024m

-Xmx1024m

-XX:MaxPermSize=256m

-XX:ReservedCodeCacheSize=96m

-XX:+UseCompressedOops


posted by 뚱2

힙사이즈 조절


$cp /Applications/IntelliJ IDEA 13.app/bin/idea.vmoptions ~/Library/Preferences/IntelliJIDEA13/idea.vmoptions

$vi ~/Library/Preferences/IntelliJIdea13/idea.vmoptions


-Xms2048m

-Xmx2048m

-XX:MaxPermSize=512m

-XX:ReservedCodeCacheSize=128m

-XX:+UseCompressedOops


posted by 뚱2

링크 : https://intellij-support.jetbrains.com/entries/23455956-Selecting-the-JDK-version-the-IDE-will-run-under


posted by 뚱2

링크 : http://www.jetbrains.com/idea/webhelp/live-templates.html


젠코딩 같이 쓸수 있는 IntelliJ 전용 템플릿 ouput, plain, surround 정도 사용하면 편할것 같다.

posted by 뚱2

링크 : http://tutorials.jenkov.com/java-unit-testing/running-tests-with-idea.html

링크 : http://confluence.jetbrains.com/display/IntelliJIDEA/Creating+Unit+Tests


posted by 뚱2

링크 : http://wiki.jetbrains.net/intellij/

posted by 뚱2

링크 : http://plugins.jetbrains.com/plugin/?id=2190

링크 : https://marketplace.atlassian.com/plugins/com.atlassian.ide.plugins.idea

 

 

 

스크린샷? : http://whiteship.tistory.com/2493

 

 

posted by 뚱2

링크 : http://fightingmamoru.tistory.com/58

 

 

위 링크를 따라했는데 내 채팅이 전송은 되는데 수신이 안되는 상황이

그래서 옵션을 달리 했다.

 

Server : talk.google.com

Port : 5222

Force SSL 2.0 instead of TLS 체크하지 않고 하면 됨

 

posted by 뚱2

링크 : http://www.slideshare.net/kingori/develop-android-app-using-intellij


posted by 뚱2

링크 : http://java.ihoney.pe.kr/277

 

 

'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글

[IntelliJ IDEA] IDETalk 사용하기  (0) 2013.08.29
[IntelliJ IDEA] 단축키, 사용법(?)  (0) 2013.07.21
[IntelliJ IDEA] 한글깨짐현상  (0) 2013.07.17
[IntelliJ IDEA] IntelliJ 시작하기  (0) 2013.07.01
[IntelliJ IDEA] Tutorial  (0) 2013.06.20
posted by 뚱2

링크 : http://h5bak.tistory.com/177

 

 

posted by 뚱2

인텔리J 시작하기 Part1 (Getting Start IntelliJ) -기본 설정편-

http://beyondj2ee.wordpress.com/2013/06/01/%EC%9D%B8%ED%85%94%EB%A6%ACj-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-part1-getting-start-intellij-%EA%B8%B0%EB%B3%B8-%EC%84%A4%EC%A0%95%ED%8E%B8/


인텔리J 시작하기 Part2 (Getting Start IntelliJ) -자바 프로젝트편-

http://beyondj2ee.wordpress.com/2013/06/15/%EC%9D%B8%ED%85%94%EB%A6%ACj-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-part2-getting-start-intellij-%EC%9E%90%EB%B0%94-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%ED%8E%B8/


인텔리J 시작하기 Part3 (Getting Start IntelliJ) – SVN -

: http://beyondj2ee.wordpress.com/2013/06/23/%EC%9D%B8%ED%85%94%EB%A6%ACj-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-part3-getting-start-intellij-svn/

 

인텔리J 시작하기 Part4 (Getting Start IntelliJ) – Git -

: http://beyondj2ee.wordpress.com/2013/06/28/%ec%9d%b8%ed%85%94%eb%a6%acj-%ec%8b%9c%ec%9e%91%ed%95%98%ea%b8%b0-part4-getting-start-intellij-git/

posted by 뚱2

링크 : http://wiki.jetbrains.net/intellij/Creating_and_running_your_first_Java_application 

'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글

[IntelliJ IDEA] 한글깨짐현상  (0) 2013.07.17
[IntelliJ IDEA] IntelliJ 시작하기  (0) 2013.07.01
[IntelliJ IDEA] Zencoding plugin  (0) 2013.05.09
[IntelliJ IDEA] Short Cut  (0) 2013.05.09
[IntelliJ IDEA] VCS 연결하기 (SVN)  (0) 2013.01.05
posted by 뚱2