Spring MVC初体验之xml配置文件

复制源码中的两句话到项目中,然后报错了...就是下面这两句话

<mvc:annotation-driven/>   
    <context:component-scan base-package="com.excelib" />
上面是自动注册组件标签,下面是组件扫描标签。

报错annotation-driven" is not bound.,驱动没有绑定

解决方案:下面这段代码中添加一句话:

applicationContext.xml的配置文件源代码

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
在上面的源代码中加上:
xmlns:mvc="http://www.springframework.org/schema/mvc"
component-scan" is not bound.

同理:

xmlns:context="http://www.springframework.org/schema/context"

你可能感兴趣的:(Spring MVC初体验之xml配置文件)