IT/실수하지말자

[SpringBoot] RestController Annotation 인식 안됨

Terriermon 2021. 10. 27. 11:37

 문제

- 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> 태그 안에 있는 의존성을 넣어주면 된다.