[ERROR] Intellij create method shortcut not working
- ERROR
- 2020. 9. 11.
반응형
1. 문제
intellj에서 'Alt+Enter' 눌렀을때 'create method' shortcut이 안보이는 경우가 있다.
2. 원인
뭔가 설정이 제대로 안잡혀 있는것 같은데.. 잘모르겠다. 😂
원인은 위에서 checkISBN 을 생성할때 input 값에 이상한 값을 넣어서.. Intellj가 int인지 String인지 구분을 못해서다. 제대로된 int 값인 '140449116'으로 바꾸면 간단히 'Alt+Enter'를 통해 method를 생성할 수 있다.
3. 해결
아래와 같이 class 생성하는 것 부터 'Alt+Enter'로 생성하면, method를 shortcut으로 생성할 수 있다.
shortcut 클래스 생성
클래스 생성 패키지 지정
shortcut 메서드 생성
추천서적
파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음
반응형
'ERROR' 카테고리의 다른 글
[ERROR] MockMvc NullPointerException Spring Boot (1) | 2020.09.11 |
---|---|
[ERROR] MockMvc java.lang.NoClassDefFoundError: javax/servlet/http/HttpSession (0) | 2020.09.11 |
[ERROR] import org.junit cannot be resolved (0) | 2020.09.11 |
[ERROR] A bean with that name has already been defined and overriding is disabled. (0) | 2020.09.11 |
[ERROR] NOAUTH Authentication required (0) | 2020.09.11 |