无法解析导入org.springframework.boot.autoconfigure.web.ErrorAttributes

时间:2017-11-23 11:32:17

标签: java spring maven spring-mvc spring-boot

我使用Spring Initializerembedded TomcatThymeleaf template engine和package作为可执行的JAR文件生成了一个Spring Boot Web应用程序。

使用的技术:

Spring Boot 2.0.0.M6,Java 8,maven

但即使我在我的pom.xml中有这种依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-autoconfigure</artifactId>
</dependency>

我在项目中遇到了这个编译错误:

 The import org.springframework.boot.autoconfigure.web.ErrorAttributes cannot be  resolved
 The import org.springframework.boot.autoconfigure.web.ErrorController cannot be resolved

2 个答案:

答案 0 :(得分:4)

最新版本的春季启动并不包含这个罐子。你可以按Ctrl + Shift + T然后检查这个类是否存在

答案 1 :(得分:3)

尝试从中导入ErrorController

  

org.springframework.boot.web.servlet.error.ErrorController

以及错误属性

  

导入org.springframework.boot.web.servlet.error.ErrorAttributes;