码迷,mamicode.com
首页 > 编程语言 > 详细

spring-mvc xml文件的最基本配置

时间:2016-12-11 07:53:43      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:pac   错误   ase   for   sch   ann   pack   ati   找不到   

<?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: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">

    <mvc:annotation-driven />
    <context:component-scan base-package="com.exyong" />


</beans>
注意配置中的拼写错误,我在配置的时候 <beans xmlns   漏了个s (xmln)导致一直报 “cvc-elt.1: 找不到元素 ‘beans‘ 的声明”

注意  <mvc:annotation-driven />配置的base-package 的值为放置Controller的包名,否则报 “No mapping found for HTTP request with URI“

spring-mvc xml文件的最基本配置

标签:pac   错误   ase   for   sch   ann   pack   ati   找不到   

原文地址:http://www.cnblogs.com/exayong/p/6158846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!