250x250
Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 설정
- Eclipse
- Source
- 문서
- Open Source
- PostgreSQL
- spring
- 오픈소스
- Core Java
- Exception
- maven
- JDBC
- Thymeleaf
- error
- ubuntu
- Spring Boot
- Docker
- Python
- git
- jpa
- JavaScript
- oracle
- IntelliJ
- STS
- Tomcat
- myBatis
- MySQL
- AJAX
- MSSQL
- SpringBoot
Archives
- Today
- Total
헤르메스 LIFE
[IntelliJ] java: cannot find symbol 본문
728x90
JDK 1.8.x
IntelliJ IntelliJ IDEA 2020.3
java: cannot find symbol symbol: class SpringBootApplication |
package com.sample;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
참담하고, 어이 없지만..
classpath 를 설정하지 못해서.. ㅡㅡㅋ
Alt + Shift + Enter
Alt + Enter
package com.sample;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
728x90