开发者社区> 问答> 正文

spring applicationContext 配置报错

spring applicationContext 的context:component-scan  

<?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:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
    
    
     <!-- 扫描类包以启动注解驱动Bean  -->
    <context:component-scan base-package="com.zyg.dao"/>
      <!-- 配置数据源 -->
     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
		destroy-method="close">
		<property name="driverClassName" value="com.mysql.jdbc.Driver" />
		<property name="url" value="jdbc:mysql://localhost:3306/zyg_dormitory" />
		<property name="username" value="root" />
		<property name="password" value="admin" />
	</bean>

applicationContext的配置如图   但是出现了错误

<context:component-scan base-package="com.zyg.dao"/>
扫描包一直有问题 求问????

展开
收起
kun坤 2020-06-03 15:00:46 453 0
1 条回答
写回答
取消 提交回答
  • 经过我的测试,sts工具,maven管理,JDK1.6,spring最新版本3.2.3.RELEASE正常,spring切换成3.0.0.RELEASE也是正常的。
    你可以尝试关闭project,然后再重新打开,检查你的JDK版本,还有要检测以下你的网络是否正常,因为他可能会去拉xsd文件的。

    ###### 异常不是说了命名空间找不到那个<context:component-scan /> 元素,给你看看我的配置

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans" 
        xmlns:context="http://www.springframework.org/schema/context" 
        xmlns:p="http://www.springframework.org/schema/p" 
        xmlns:mvc="http://www.springframework.org/schema/mvc" 
        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 
            http://www.springframework.org/schema/mvc 
            http://www.springframework.org/schema/mvc/spring-mvc.xsd 
            http://www.springframework.org/schema/context   
            http://www.springframework.org/schema/context/spring-context.xsd">

    ######回复 @Hans_zhuang : 你有没有看看目录下有没有context 的xsd文件的######我配置应该没有错 不知道是不是少了包######加上<context:annotation-config />

    2020-06-04 10:37:22
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
云栖社区特邀专家徐雷Java Spring Boot开发实战系列课程(第20讲):经典面试题与阿里等名企内部招聘求职面试技巧 立即下载
微服务架构模式与原理Spring Cloud开发实战 立即下载
阿里特邀专家徐雷Java Spring Boot开发实战系列课程(第18讲):制作Java Docker镜像与推送到DockerHub和阿里云Docker仓库 立即下载

相关实验场景

更多