Spring MVC - 如何在不使用注释的情况下映射控制器中的各个方法
总的来说,我对 Spring 框架非常陌生。如何在控制器中映射各个方法,以便我可以调用除handleRequestInternal之外的任何其他方法。 我也不想使用注释(@RequestMapping)。
谢谢 马努
I am very new to Spring framework in general. How can I map individual methods in a controller, so that I can call any other method other than handleRequestInternal for example.
Also I do not want to use annotation (@RequestMapping).
Thank you
manu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用基于接口的控制器,而不是使用手动调度到您的方法,否则我相信您必须使用注释。
If you use an interface based Controller than use manual dispatching to your methods, otherwise you have to use annotations I believe.
你想要 Spring MVC 的 约定优于配置支持。查看 ControllerClassNameHandlerMapping。
You want Spring MVC's convention over configuration support. Check out ControllerClassNameHandlerMapping.