Spring framework 5.2.8.RELEASE 不支持 MultiActionController
Is MultiActionController not support in Spring framework 5.2.8.RELEASE
我添加了 spring framework 5.2.8.RELEASE 依赖。在我尝试访问 MultiActionController.class 时加载 jar 后,发现 org.springframework.web.servlet.mvc.multiaction 这个包丢失了。这个版本是否弃用了这个包?
MultiActionController
在 4.3 中被标记为弃用
Deprecated as of 4.3, in favor of annotation-driven handler methods
并在 5.x
中删除
因此您应该将其转换为 annotated controller。
我添加了 spring framework 5.2.8.RELEASE 依赖。在我尝试访问 MultiActionController.class 时加载 jar 后,发现 org.springframework.web.servlet.mvc.multiaction 这个包丢失了。这个版本是否弃用了这个包?
MultiActionController
在 4.3 中被标记为弃用
Deprecated as of 4.3, in favor of annotation-driven handler methods
并在 5.x
中删除因此您应该将其转换为 annotated controller。