我是Spring的新手,我正在尝试扩展BaseCommandController
,但Eclipse并没有显示它。我可以延长AbstractController
而不是BaseCommandController
。我已经添加了spring-framework 4.2.2.RELEASE中的所有jar文件。
我该怎么做才能解决这个问题?
答案 0 :(得分:1)
您无法扩展BaseCommandController
,因为它已从Spring 3开始弃用,并在Spring 4中被删除。
Spring方法现在使用弃用评论中提到的注释:
从Spring 3.0开始,
@deprecated
,支持带注释的控制器
您应该查看Getting Started guide of Spring MVC,在那里您可以找到@Controller
注释的一个很好的示例