本文主要是介绍Spring| mvc:annotation-driven注解的作用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
mvc:annotation-driven会自动注册RequestMappingHandlerMapping与RequestMappingHandlerAdapter两个Bean,这是Spring MVC为@Controller分发请求所必需的,并且提供了数据绑定支持,@NumberFormatannotation支持,@DateTimeFormat支持,@Valid支持读写XML的支持(JAXB)和读写JSON的支持(默认Jackson)等功能。
使用该注解后的springmvc-config.xml:
<context:component-scan base-package="com.yveshe.controller" /><!--设置配置方案 -->
<mvc:annotation-driven /><!--使用默认的Servlet来响应静态文件 -->
<mvc:default-servlet-handler /><!-- 视图解析器 -->
<beanclass="org.springframework.web.servlet.view.InternalResourceViewResolver"><!-- 前缀 --><property name="prefix"><value>/WEB-INF/content/</value></property><!-- 后缀 --><property name="suffix"><value>.jsp</value></property>
</bean>
参考: https://blog.csdn.net/u011479200/article/details/92770312 中HandlerMapping和HandlerAdapter的配置
https://blog.csdn.net/Code_shadow/article/details/81186750
这篇关于Spring| mvc:annotation-driven注解的作用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!