springmvc注解驱动

Posted mengchenhui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springmvc注解驱动相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>

<beans xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans">



<context:component-scan base-package="cn.mengchenhui"/>
<!-- 注解驱动 -->
<mvc:annotation-driven/>
<!-- 视图解释器 -->

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property value="/WEB-INF/jsp/" name="prefix"/>
<property value=".jsp" name="suffix"/>
</bean>

</beans>

以上是关于springmvc注解驱动的主要内容,如果未能解决你的问题,请参考以下文章

spring mvc 常用注解详解

springmvc入门基础之注解和参数传递

Spring注解驱动开发-----servlet3.0springmvc

随本小记——springmvc常用注解

SpringMVC 基于注解的Controller @RequestMapping @RequestParam

SpringMVC