Deleting provided scope of spring-boot-starter-tomcat dependency helps me.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
Deleting provided scope of spring-boot-starter-tomcat dependency helps me.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
[출처] IntelliJ Process finished with exit code 0 when spring-boot run
Settings - Version Control - Ignored Files
Run à Edit Configurations à Add New Configurations à Maven
이름 입력 à Working Directory 지정 (모듈) à Command Line 입력 (clean source:jar deploy)
Search Everywhere에서 파일을 검색하면 class 파일까지 같이 검색되어 불편함
해결 방법
Project Structure (Ctrl + Alt + Shift + S) - Module에서 target을 exclude
File -> Settings ->Editor -> General의 Show quick documentation on mouse move에 체크
[출처] How to see JavaDoc in IntelliJ IDEA?