创建名称为“ homeController”的bean时出错:自动连接的依赖项注入失败

时间:2019-01-16 16:50:13

标签: java spring hibernate maven h2

我正在尝试在春季创建电子商务。在项目中包含“ Hibernate”和“ H2”数据库后,出现错误。错误在下面给出。我正在非常努力,但未找到任何解决方案。

错误:

  

org.springframework.beans.factory.BeanCreationException:错误   创建名称为“ homeController”的bean:自动接线的注入   依赖失败;嵌套异常为   org.springframework.beans.factory.BeanCreationException:无法   汽车线领域:私人com.home.dao.ProductDao   com.home.controller.homeController.productDao;嵌套异常为   org.springframework.beans.factory.BeanCreationException:错误   创建名称为“ productDaoImpl”的bean:自动接线的注入   依赖失败;嵌套异常为   org.springframework.beans.factory.BeanCreationException:无法   autowire字段:私有org.hibernate.SessionFactory   com.home.dao.impl.ProductDaoImpl.sessionFactory;嵌套异常为   org.springframework.beans.factory.BeanCreationException:错误   创建在ServletContext中定义的名称为'sessionFactory'的bean   资源[/WEB-INF/applicationContext.xml]:调用init方法   失败嵌套异常为   org.hibernate.exception.GenericJDBCException:无法打开JDBC   用于执行DDL的连接

applicationContext.xml

<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="org.h2.Driver" />
    <property name="url" value="jdbc:h2:~/test" />
    <property name="username" value="sa" />
    <property name="password" value="" />
</bean>

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource"></property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">org.hibernate.dialect.H2Dialect</prop>
            <prop key="hibernate.hbm2ddl.auto">update</prop>
            <prop key="hibernate.show_sql">true</prop>
            <prop key="hibernate.format_sql">true</prop>
        </props>
    </property>
    <property name="packagesToScan">
        <list>
            <value>com.home</value>
        </list>
    </property>
</bean>

<bean id="transactionManager"
    class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean> 

home-servlet.xml

<context:component-scan base-package="com.home">
    <context:include-filter type="aspectj" expression="com.home.*" />
</context:component-scan>

<mvc:annotation-driven />

<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/WEB-INF/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>

</bean>

<mvc:resources mapping="/resources/**"
    location="/WEB-INF/resources/" cache-period="31556926" />


<tx:annotation-driven />

web.xml

<display-name>Archetype Created Web Application</display-name>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/home-servlet.xml,
        /WEB-INF/applicationContext.xml
    </param-value>
</context-param>

<servlet>
    <servlet-name>home</servlet-name>
    <servlet-class>
        org.springframework.web.servlet.DispatcherServlet
    </servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>home</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

homeController.java

@Controller
@Configuration
public class homeController {

@Autowired
private ProductDao productDao;

@RequestMapping("/")
public String home() {
    return "views/home";
}


@RequestMapping("/productList")
public String getProducts(Model model) {
    List<Product> products = productDao.getAllProducts();
    model.addAttribute("products", products);

    return "views/productList";
}

@RequestMapping("/productList/viewProduct/{productId}")
public String viewProduct(@PathVariable String productId, Model model) throws IOException{

    Product product = productDao.getProductById(productId);
    model.addAttribute(product);

    return "views/viewProduct";
}

}

ProductDaoImpl.java

@Repository
@Transactional
public class ProductDaoImpl implements ProductDao {

@Autowired
private SessionFactory sessionFactory;

public void addProduct(Product product) {
    Session session = sessionFactory.getCurrentSession();
    session.saveOrUpdate(product);
    session.flush();
}

public Product getProductById(String id) {
    Session session = sessionFactory.getCurrentSession();
    Product product = (Product) session.get(Product.class, id);
    session.flush();

    return product;
}

public List<Product> getAllProducts() {
    Session session = sessionFactory.getCurrentSession();
    Query query = session.createQuery("from Product");
    List<Product> products = query.list();
    session.flush();

    return products;
}

public void deleteProduct (String id) {
    Session session = sessionFactory.getCurrentSession();
    session.delete(getProductById(id));
    session.flush();
}

}

Product.java代码:

@Entity

公共类产品{

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private String productId;
private String productName;
private String productCategory;
private String productDescription;
private double productPrice;
private String productCondition;
private String productStatus;
private int unitInStock;
private String productManufacturer;

public String getProductId() {
    return productId;
}

public void setProductId(String productId) {
    this.productId = productId;
}

public String getProductName() {
    return productName;
}

public void setProductName(String productName) {
    this.productName = productName;
}

public String getProductCategory() {
    return productCategory;
}

public void setProductCategory(String productCategory) {
    this.productCategory = productCategory;
}

public String getProductDescription() {
    return productDescription;
}

public void setProductDescription(String productDescription) {
    this.productDescription = productDescription;
}

public double getProductPrice() {
    return productPrice;
}

public void setProductPrice(double productPrice) {
    this.productPrice = productPrice;
}

public String getProductCondition() {
    return productCondition;
}

public void setProductCondition(String productCondition) {
    this.productCondition = productCondition;
}

public String getProductStatus() {
    return productStatus;
}

public void setProductStatus(String productStatus) {
    this.productStatus = productStatus;
}

public int getUnitInStock() {
    return unitInStock;
}

public void setUnitInStock(int unitInStock) {
    this.unitInStock = unitInStock;
}

public String getProductManufacturer() {
    return productManufacturer;
}

public void setProductManufacturer(String productManufacturer) {
    this.productManufacturer = productManufacturer;
}

}

ProductDao.java代码: 公共接口ProductDao {

void addProduct(Product product);

Product getProductById(String id);

List<Product> getAllProducts();

void deleteProduct(String id);

}

项目结构或目录图片Project Structure or Directory at my Eclipse Oxygen IDE

2 个答案:

答案 0 :(得分:0)

ProductDao不是bean。这就是原因。仓库,控制器,服务都是bean的类型。确保这是哪种类型的豆.....谢谢。

答案 1 :(得分:0)

最后,当我使用 IntelliJ IDEA IDE时,我发现了自己的问题。问题如下:

  1. 我的问题出现在 pom.xml 文件中。在这里,我使用了 hibernate-core 最新版本( 5.4.0.Final )依赖性,该依赖性不支持 import org.hibernate.Query; 包,并且不支持 Query query = session.createQuery(“ from Product”); Product product =(Product)session.get(Product.class,id); ProductDaoImpl.java 类中的代码。

  2. 我还使用了 spring-webmvc spring-core spring-orm 的最新版本。 pom.xml 文件。为此会发生版本冲突。

解决方案:

  1. 忘记Eclipse并避免使用它。请使用 IntelliJ IDEA 。这是Java Spring MVC框架非常用户友好的IDE,并且还显示了您做错了什么。

  2. 创建新项目,并在 pom.xml 文件中使用 hibernate-core 4.0.1.Final 版本依赖性,还使用 4.2.8。释放自己的, spring-core spring-orm 依赖项的版本。

    1. 从ProductDaoImpl.java类中删除 import org.hibernate.Query.query; 包,并放入 import org.hibernate.Query 包。

谢谢:)