eclipse
-
에러 내용 The 'org.eclipse.recommenders.completion.rcp.javaCompletionProposalComputer.intelligent' proposal computer from the 'org.eclipse.recommenders.completion.rcp' plug-in did not complete normally. The extension took too long to return from the 'computeCompletionProposal()' operation. To avoid the message, disable the 'org.eclipse.recommenders.completion.rcp' plug-in or disable the 'Java Propos..
Eclipse | Problems During Content Assist에러 내용 The 'org.eclipse.recommenders.completion.rcp.javaCompletionProposalComputer.intelligent' proposal computer from the 'org.eclipse.recommenders.completion.rcp' plug-in did not complete normally. The extension took too long to return from the 'computeCompletionProposal()' operation. To avoid the message, disable the 'org.eclipse.recommenders.completion.rcp' plug-in or disable the 'Java Propos..
2023.06.26 -
이클립스로 코딩 중 퀵픽스 라는 기능을 사용해봤다. 인텔리제이에서 지원하는 메서드 생성과 같은 기능이다. (alt + ins) 리펙토링할 때 너무 좋은 것 같아서 복습 겸 기록으로 남겨둔다. 사용 의의 생각보다 너무 괜찮은 기능, 리펙토링 하면서 메서드로 만들 때 이 기능을 사용한다면 편리하게 메서드 생성 가능! 사용 방법 (1) QuickFix 열기 : Ctrl + 1 메서드 생성 : Extract to method 선택 (2) 메서드 생성 단축키 : Ctrl + 2 + M 간단한 예시 if 구문을 메서드로 만들 것이다. public boolean quickMethod() { String x = "spring"; if (x == "") { return false; } else { return true;..
Eclipse | QuickFix(Extract to method)이클립스로 코딩 중 퀵픽스 라는 기능을 사용해봤다. 인텔리제이에서 지원하는 메서드 생성과 같은 기능이다. (alt + ins) 리펙토링할 때 너무 좋은 것 같아서 복습 겸 기록으로 남겨둔다. 사용 의의 생각보다 너무 괜찮은 기능, 리펙토링 하면서 메서드로 만들 때 이 기능을 사용한다면 편리하게 메서드 생성 가능! 사용 방법 (1) QuickFix 열기 : Ctrl + 1 메서드 생성 : Extract to method 선택 (2) 메서드 생성 단축키 : Ctrl + 2 + M 간단한 예시 if 구문을 메서드로 만들 것이다. public boolean quickMethod() { String x = "spring"; if (x == "") { return false; } else { return true;..
2023.03.22