要在spring mvc中使用注解需要在*-servlet.xml文件中添加
<mvc:annotation-driver />配置
这个配置会创建DefaultAnnotationHandlerMapping和AnnotationMethodHandlerAdapter两个bean
但是要注意,要使这个标签生效需要在xml的beans标签中添加属性
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"
时间: 2024-11-04 09:01:24