首页 > 其他 > 详细

dispatcher-servlet.xml

时间:2020-09-18 22:56:09      阅读:44      评论:0      收藏:0      [点我收藏+]
dispatcher-servlet.xml

//自己档

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http:// www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
">
<context:component-scan base-package="org.springframework.samples.petclinic.web"/>


//用到注解就要用这个,所以必须写
<!-- 开启springmvc注解 -->
<mvc:annotation-driven></mvc:annotation-driven>
<!-- 寻找spingmvc相关注解的类 -->
//所有控制器的包,固定格式
<context:component-scan base-package="com.tedu.controller"></context:component-scan>
</beans>

  

dispatcher-servlet.xml

原文:https://www.cnblogs.com/yangjingru/p/13693083.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!