본문 바로가기

개발관련/error

[error sts]TilesConfigurer cannot be resolved to a type, TilesView cannot be resolved to a type

728x90

Problem

TilesConfigurer, TilesView,TilesViewResolver

세 개의 클래스를 import 불가.

 

cause

tiles와 호환되는 스프링 부트의 버전이 낮음.

org.springframework.web.servlet.view.tiles3 패키지가 없음

( TilesViewResolver -> UrlBasedViewResolver 클래스 대체 가능)

 

 

resolving

 

pom.xml에서 스프링부트 버전을 2.6.1로 낮춘다.

 

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.1</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>