为什么报错

来源:5-2 配置去掉Hibernate的配置文件-Spring整合Hibernate

qq_关中二流子_04291279

2017-08-22 22:34

为什么我的<context:property-placeholder location="classpath:jdbc.properties" ignore-unresolvable="true"/>报错,说是无法找到context:property-placeholder的声明;

表头我加了

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

xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/context/spring-context.xsd

配置,在网上找说是没加刚才的配置

写回答 关注

1回答

  • 水木星火
    2017-08-24 22:47:29

    下面也要加

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

基于SSH实现员工管理系统之框架整合篇

本视频教程主要介绍环境搭建和SSH框架整合,逐层深入理解学习

49832 学习 · 344 问题

查看课程

相似问题