必须为元素类型“属性”声明获取“属性“ ref”。”

时间:2020-05-08 14:53:27

标签: java spring hibernate

请检查第21行,我在以下XML中遇到错误

Check this image

Latest XML file

1 个答案:

答案 0 :(得分:0)

下面是您正确的Spring bean配置的样子-

<?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"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans  
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">  
        <property name="driverClassName"  value="com.mysql.jdbc.Driver"></property>  
        <property name="url" value="jdbc:mysql://localhost:3306/Banking"></property>  
        <property name="username" value="root"></property>  
        <property name="password" value="root"></property>  
    </bean>  


<bean id = "mysessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource" ></property>  

    <property name = "mappingResources">
    <list>
        <value>credentials.hbm.xml</value>
    </list> 
    </property>

    <property name = "hibernateProperties">
        <props>
          <prop key="hibernate.hbm.ddl.auto">update</prop>
          <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>  
          <prop key="hibernate.show_sql">true</prop>
        </props>
    </property>


</bean>

<bean id="template" class="org.springframework.orm.hibernate3.HibernateTemplate">  
    <property name="sessionFactory" ref="mysessionFactory"></property>  
    </bean>  

    <bean id="d" class="com.javatpoint.EmployeeDao">  
    <property name="template" ref="template"></property>  
    </bean>  
</beans>
相关问题