Spring Boot 1.4 中不推荐使用 ErrorPage class
ErrorPage class deprecated in Spring Boot 1.4
在我工作的 Spring Boot 1.4 应用程序中,我目前有
import org.springframework.boot.context.embedded.ErrorPage;
根据 documentation,从 1.4 开始,这个 class 被弃用,取而代之的是 org.springframework.boot.web.ErrorPage
但是,当我将代码更改为
import org.springframework.boot.web.ErrorPage;
我得到一个错误 The import org.springframework.boot.web.ErrorPage cannot be resolved
如何解决这个问题?
javdoc 有误。正确的替换是 org.springframework.boot.web.servlet.ErrorPage
。我已经打开 an issue 以便我们可以修复 javadoc。感谢您让我们知道。
在我工作的 Spring Boot 1.4 应用程序中,我目前有
import org.springframework.boot.context.embedded.ErrorPage;
根据 documentation,从 1.4 开始,这个 class 被弃用,取而代之的是 org.springframework.boot.web.ErrorPage
但是,当我将代码更改为
import org.springframework.boot.web.ErrorPage;
我得到一个错误 The import org.springframework.boot.web.ErrorPage cannot be resolved
如何解决这个问题?
javdoc 有误。正确的替换是 org.springframework.boot.web.servlet.ErrorPage
。我已经打开 an issue 以便我们可以修复 javadoc。感谢您让我们知道。