当前位置: 首页 > 知识库问答 >
问题:

Spring+Hibernate中的org.springframework.beans.factory.BeanCreationException

吴哲
2023-03-14

我使用spring和Hibernate集成使用mysql创建了一个简单的java项目,其中包含一个包和3个类,一个应用程序context.xml文件,以及一个用于映射的hbm.xml,但是编程在运行时出现了exception:

org.springframework.beans.factory.BeanCreationException

这是employee.java文件

public class Employee {

    private int id;
    private String name;
    private int salary;

    public Employee() {
    }

    public Employee(int id, String name, int salary) {
        super();
        this.id = id;
        this.name = name;
        this.salary = salary;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    } 

    public void setName(String name) {
        this.name = name;
    }

    public int getSalary() {
        return salary;
    }

    public void setSalary(int salary) {
        this.salary = salary;
    }

    void display() {
        System.out.println(id + " " + name + " " + salary);
    }

}

这是test.java

public class Test {

public static void main(String[] args) {

    Resource r = new ClassPathResource("applicationContext.xml");
    BeanFactory factory = new XmlBeanFactory(r);

    EmployeeDao dao = (EmployeeDao) factory.getBean("d");

    Employee e = new Employee();
    e.setId(114);
    e.setName("varun");
    e.setSalary(50000);

    dao.saveEmployee(e);

}}
public class EmployeeDao {

HibernateTemplate template;

public void setTemplate(HibernateTemplate template) {
    this.template = template;
}  

public void saveEmployee(Employee e) {
    template.save(e);
}

public void updateEmployee(Employee e) {
    template.update(e);
}

public void deleteEmployee(Employee e) {
    template.delete(e);
}  

public Employee getById(int id) {
    Employee e = (Employee) template.get(Employee.class, id);
    return e;
}  

public List<Employee> getEmployees() {
    List<Employee> list = new ArrayList<Employee>();
    list = template.loadAll(Employee.class);
    return list;
}}
<hibernate-mapping>  
<class name="com.javatpoint.Employee" table="emp555">  
    <id name="id">  
        <generator class="assigned"></generator>  
    </id>  
    <property name="name"></property>  
    <property name="salary"></property>  
</class>              

这是applicationContext.xml

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


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

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

    <property name="hibernateProperties">  
        <props>  
            <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>  
            <prop key="hibernate.hbm2ddl.auto">update</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>  

下面是堆栈跟踪:

线程“main”org.springframework.beans.factory.beanCreationException中的异常:创建类路径资源[applicationContext.xml]中定义的名称为“'d'的bean时出错:在设置bean属性”template“时无法解析对bean”template“的引用;嵌套异常是org.springframework.beans.factory.beanCreationException:创建类路径资源[applicationContext.xml]中定义的名为“template”的bean时出错:bean实例化失败;嵌套异常是java.lang.noClassDefFounderRorr:org/hibernate/jdbcException

共有1个答案

柳豪
2023-03-14
<bean id="d" class="com.javatpoint.EmployeeDao">  
    <property name="template" ref="template"></property>  
</bean>  

您已经创建了对ref=“template”的引用,但Spring找不到它。

检查是否所有必需的依赖项都可用。在这里,您应该检查org.springframework.orm.hibernate3.hibernateTemplatejar可用。

 类似资料:
  • 但获得以下异常: 我搜索了一下,在SO上找到了类似的问题,解决方法如下: 这就解决了问题。但在该解决方案中,手动开始和提交事务会有很多麻烦。 请帮帮忙。

  • 问题内容: 我在Web应用程序中使用 Spring 3.1 + Hibernate4.x 。在我的DAO中,我将用户类型对象保存如下 但是出现以下异常: 我用谷歌搜索并找到了类似的问题,有以下解决方案: 那解决了问题。但是在该解决方案中,手动开始和提交事务有很多麻烦。 没有手动开始/提交交易,我不能直接使用 吗? 我也尝试在服务/ dao方法上使用,但是问题仍然存在。 编辑: 这是我的Spring

  • 我的项目使用的是Spring MVC4、Hibernate5。我已经用通知拦截器配置了hibernate事务,但它没有像我希望的那样回滚。请帮帮我,我的配置有什么问题? @aspect@配置公共类TxAdviceInterceptor{ } 道: } 正如上面的代码,我想如果postdao.save是error,tagDao也是rollback。

  • 我刚刚学会了spring和hibernate,当我锻炼的时候,我有一些错误,如下所示: 这是我的hibernate.xml 这是我的pom.xml 我已经试图解决这个错误,但还没有修复它,那么有人能帮我吗?

  • 公共类用户实现Serializable{ 而metghod是 }

  • 我有一个使用Hibernate/JPA的持久性Spring Boot应用程序。 我正在使用事务来管理我的数据库持久性,并且我正在使用注释来定义应该以事务方式执行的方法。 在持久化时,我有三个主要的事务粒度级别: 要保留的实体批次 要保留的单个实体 保留实体的单一数据库操作 因此,在考虑整个持久性流量时,您可以想象我有三个级别的嵌套事务。 第2层和第3层之间的交互如我所愿透明地工作,因为在没有为事务