英文:
Is MultiActionController not support in Spring framework 5.2.8.RELEASE
问题
我在依赖中添加了Spring Framework 5.2.8.RELEASE。在加载JAR文件后,当我尝试访问MultiActionController.class时,我注意到org.springframework.web.servlet.mvc.multiaction这个包丢失了。在这个版本中是否已经弃用了这个包?
英文:
I added spring framework 5.2.8.RELEASE in dependency. After jar loaded when I'm trying to access MultiActionController.class observred that org.springframework.web.servlet.mvc.multiaction this package is missing. Is there this package deprecated in this version?
答案1
得分: 2
MultiActionController
在4.3版本中被标记为已弃用
> 从4.3版本开始已弃用,建议使用注解驱动的处理方法
并且在5.x版本中已移除
因此,您应该将其转换为带注解的控制器。
英文:
The MultiActionController
was marked deprecated in 4.3
> Deprecated as of 4.3, in favor of annotation-driven handler methods
and was removed in 5.x
Thus you should convert it to an annotated controller.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论