문제
- RestController Annotation이 제대로 인식되지 않아, RestController cannot be resolved to a type 에러 발생
- 기존에 있는 Annotation을 사용해야 하므로 Creat annotation은 상황에 맞지 않다.
해결
maven의 pom.xml에 dependency를 추가하는 것을 잊어먹었다.
<dependencies>
...
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
...
</dependencies>
dependencies 안에 <dependency></dependency> 태그 안에 있는 의존성을 넣어주면 된다.
'IT > 실수하지말자' 카테고리의 다른 글
[Error] 자바스크립트 도중 만난 에러들 (0) | 2021.11.25 |
---|---|
[Java] java.lang.OutOfMemoryError: Metaspace (0) | 2021.11.22 |
[Network] FTP 작동 방식 (0) | 2021.06.17 |
[Terraform] terraform apply가 계속 적용되는 현상 (0) | 2021.04.29 |
[Terraform] Cycle 에러 (0) | 2021.03.24 |