在我正在使用的Spring Boot 1.4应用程序中,我目前有
import org.springframework.boot.context.embedded.ErrorPage;
根据documentation,从1.4开始,此类已被弃用,转而使用org.springframework.boot.web.ErrorPage
但是,当我将代码更改为
时import org.springframework.boot.web.ErrorPage;
我收到错误The import org.springframework.boot.web.ErrorPage cannot be resolved
如何解决这个问题?
答案 0 :(得分:9)
javdoc错了。正确的替换是org.springframework.boot.web.servlet.ErrorPage
。我打开了an issue,以便我们可以修复javadoc。感谢您告诉我们。