본문 바로가기
728x90
반응형

ide21

[Intellij] VisualVM 연동 및 사용법 1. VisualVM 설치 https://visualvm.github.io/download.html VisualVM: Download Download VisualVM is distributed as a standalone tool at GitHub, and as an optional component of the GraalVM. Both are the same bits with the same features. Standalone tool runs on any compatible JDK, component is configured to run using the host GraalVM. visualvm.github.io 2. Intellij + VisualVM 연동 Settings > Plugin에서 Vi.. 2023. 7. 13.
[intellij] 멀티 커서 단축키 일회성 : Alt + Shift + 왼쪽 커서 지속 : Alt + Shift + Insert 2022. 11. 4.
[IntelliJ] 스트림 디버깅 (Stream trace) 스트림으로 개발하다 보면 연산과정에서의 데이터 변화를 한눈에 보고 싶을 때가 있습니다. 인텔리제이 2017.03 버전부터 기본으로 설치되어있는 Java Stream Debugger 플러그인 사용법을 알아보겠습니다. 1. Stream 위치에 breakpoint를 설정해주고 debug run해줍니다. 2. Trace Current Stream Chain 아이콘을 클릭합니다. 3. 스트림 연산이 수행되고 데이터 변화와 결과를 한눈에 확인할 수 있습니다. [Reference] https://plugins.jetbrains.com/plugin/9696-java-stream-debugger https://www.jetbrains.com/help/idea/analyze-java-stream-operations.html 2022. 4. 28.
[IntelliJ] Formatting Actions Disabled @formatter off/on 인텔리제이에서 Save Actions 플러그인을 설치하면 File > Settings > Other Settings > Save Actions에서 Formatting Action을 설정할 수 있습니다. 저는 [CTRL + SHIFT + S] 단축키 사용 시에만 포맷팅이 일어나게 적용하였습니다. File > Settings > Editor > Code Style > Formatter Control을 Enable 하면 Formatter off/on marker로 포맷팅을 적용하고 싶지 않은 영역을 지정할 수 있습니다. Before formatting public void fomatter() throws Exception{ String[] arr1 = { "a", "b", "c" }; // @formatter.. 2021. 11. 18.
[IntelliJ] Framework Support git clone 받은 후 maven project 인식이 안된다면 Project SDK 설정 후 프로젝트 명 우클릭 > Add Framework Support... > Maven을 선택합니다. 2021. 11. 15.
IntelliJ와 JIRA 연동 (with. 플러그인 Jira Integration) IntelliJ로 이슈 트래커인 JIRA와 연동해서 업무를 진행하는 방법입니다. File > Settings... > Tools > Tasks > Servers 경로로 이동합니다. [+] 버튼을 클릭하여 [JIRA]를 선택합니다. 설정 창에서 본인이 사용하는 JIRA URL과 계정 정보를 입력한 뒤 [Test] 버튼을 클릭합니다. [Connection is successful] 문구가 보이면 연동 완료이므로 [OK] 버튼을 클릭하여 설정을 마칩니다. 이제 기능을 확인해보겠습니다. 연동할 JIRA task를 생성합니다. 윈도우 기준으로 [Alt + Shift + N] 단축키를 누르면 본인에게 할당된 task 목록을 볼 수 있습니다. 원하는 task를 선택하면 아래와 같이 Open Task 창이 뜨고, Up.. 2021. 11. 11.
[IntelliJ] 인텔리제이 메모리 늘리기 인텔리제이도 설정을 통해 메모리를 늘리고 줄일 수 있습니다. 1. Help > Edit Custom VM Options... 2. Xms, Xmx 값을 변경한 후 인텔리제이를 재시작 3. 우측 하단의 memory indicator로 메모리 설정이 잘 변경되었는지 확인 3-1) memory indicator가 보이지 않는 경우 : File > Settings... > Appearance & Behavior > Appearance > Show memory indicator 체크 2021. 11. 10.
[IntelliJ] Git 원하는 commit만 가져오기 (cherry-pick) 작업할 브런치에서 Git > Show History 중 원하는 항목을 선택한 뒤 우클릭 > Cherry-Pick 하면 해당 작업만 가져올 수 있습니다. 혹은 Revision을 확인 한 뒤 git cherry-pick {oldest-commit}^..{latest-commit} 명령어로 가져올 수 있습니다. 2021. 11. 4.
[Android Studio] flutter version upgrade in window 콘솔 창에서 flutter --version 명령어로 버전을 확인합니다. 그러고 나서 flutter upgrade 명령어로 버전을 업그레이드합니다. 다시 flutter --version 명령어로 버전을 확인하면 flutter sdk와 dart sdk 버전이 업그레이드된 것을 확인할 수 있습니다. 혹은 flutter doctor 명령어로 확인합니다. pubspec.yaml의 environment:sdk: 버전은 https://dart.dev/guides/language/evolution 에서 최신 버전을 확인 할 수 있습니다. dependency 패키지의 버전은 https://pub.dev/에서 검색하여 최신버전을 확인할 수 있습니다. 패키지 버전을 변경 후 Pub get 하여 dependency되는 버전.. 2021. 7. 14.
[Android Studio] android emulator wifi Connected with No Internet in window AVD의 인터넷 연결이 되지 않을 때 해결방법입니다. 1. 네트워크 및 공유 센터에서 이더넷을 클릭합니다. 2. [속성(P)] 버튼을 클릭합니다. 3. 인터넷 프로토콜 버전 4(TCP/IPv4)를 선택 후 [속성(R)] 버튼을 클릭합니다. 4. 다음 DNS 서버 주소를 Google DNS 서버 IP 주소로 변경합니다. 8.8.8.8 and/or 8.8.4.4. [Referenece] https://developers.google.com/speed/public-dns/docs/using 2021. 7. 14.
728x90
반응형