1

Bean の作成中に以下のエラーが発生し続けますが、宣言したときに Bean が表示されない理由がわかりません。ファイル構造に何か問題がありますか、それとももっと深い問題がありますか? これが多くの人にとってTLDRになることはわかっていますが、完全なフローを含めたいと思いました.

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'productsController' defined in file [C:\Users\ChappleZ\Desktop\CRCart001\CRCartSpring001\out\artifacts\CRCartSpring001_war_exploded\WEB-INF\classes\cr\controllers\ProductsController.class]: Unsatisfied dependency expressed through constructor argument with index 0 of type [cr.managers.ProductsManager]: : No matching bean of type [cr.managers.ProductsManager] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [cr.managers.ProductsManager] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}

以下は、フォルダー構造と関連ファイルです。

 
ソース
- ジャワ
     |_Cr
          |_ コントローラー
               |_ 製品コントローラ
          |_ ダオ
               |_ 実装
                    |_ 製品DaoImpl
          |_ 製品ダオ
          |_ エンティティ
               |_ 製品
          |_ マネージャー
               |_ 製品マネージャー
               |_ 実装
                    |_ ProductsManagerImpl
- 資力
     |_豆
          |_ Daos.xml
          |_ Services.xml
     |_ 構成
          |_ BeanLocations.xml
     |_ データベース
          |_ データソース.xml
          |_ Hibernate.xml
     |_ プロパティ
          |_ データベースのプロパティ

ウェブ
- 資力
     |_ コンポーネント
     |_CSS
     |_ データ
     |_画像
     |_ Js
     |_ ビュー
- WEB-INF
     |_ applicationContext.xml
     |_dispatcher-servlet.xml
     |_logging.properties
     |_ web.xml
- index.jsp

製品コントローラー

package cr.controllers;

import cr.Entity.Products;
import cr.managers.ProductsManager;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("/Products")
public class ProductsController {
    private ProductsManager productsManager;

    @Autowired
    public ProductsController(ProductsManager productsManager) {
        this.productsManager = productsManager;
    }

    @RequestMapping(
            value = "/products/{productId}",
            method = RequestMethod.GET)
    public
    @ResponseBody
    Products findByProductId(@PathVariable long productId) {
        Products products = productsManager.findByProductId(productId);
        return products;
    }
}

製品DaoImpl

package cr.dao.impl;

import cr.Entity.Products;
import cr.dao.ProductsDao;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

import java.util.List;

public class ProductsDaoImpl extends HibernateDaoSupport implements ProductsDao {
    @Override
    public void save(Products products) {
        getHibernateTemplate().save(products);
    }

    @Override
    public void update(Products products) {
        getHibernateTemplate().update(products);
    }

    @Override
    public void delete(Products products) {
        getHibernateTemplate().delete(products);
    }

    @Override
    public Products findByProductId(Long productId) {
        List list = getHibernateTemplate().find("from Products where productId=?",productId);
        return (Products)list.get(0);
    }
}

製品ダオ

package cr.dao;

import cr.Entity.Products;
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;

@JsonAutoDetect
@JsonIgnoreProperties(ignoreUnknown = true)
public interface ProductsDao {
    void save(Products products);

    void update(Products products);

    void delete(Products products);

    Products findByProductId(Long productId);
}

製品エンティティ

package cr.Entity;

import com.sun.istack.internal.NotNull;
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;

import javax.persistence.*;
import java.sql.Timestamp;

@JsonAutoDetect
@JsonIgnoreProperties(ignoreUnknown = true)
@Entity
@Table(name= "Products")
public class Products {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name= "productsId")
    private int productsId;

    @Column(name = "ProductName")
    @NotNull
    private String productName;

    @Column(name = "ProductDescription")
    @NotNull
    private String productDescription;

    @Column(name = "MfgCost")
    private double mfgCost;

    @Column(name = "Price")
    private double price;

    @Column(name = "SalePrice")
    private double salePrice;

    @Column(name = "CreationDate")
    private Timestamp creationDate;

    @Column(name = "DeletedIndicator")
    private Boolean deletedIndicator;

    @Column(name = "ImagePath")
    @NotNull
    private String imagePath;

+Setters and Getters + ToString (Not added to keep post shorter)

製品マネージャー

package cr.managers;

import cr.Entity.Products;

public interface ProductsManager {
    void save(Products products);

    void update(Products products);

    void delete(Products products);

    Products findByProductId(Long productId);
}

ProductsManagerImpl

package cr.managers.impl;

import cr.Entity.Products;
import cr.dao.ProductsDao;
import cr.managers.ProductsManager;

public class ProductsManagerImpl implements ProductsManager{
    ProductsDao productsDao;

    public void setProductsDao(ProductsDao productsDao){
        this.productsDao=productsDao;
    }

    public void save(Products products) {
        productsDao.save(products);
    }

    public void update(Products products) {
        productsDao.update(products);
    }

    public void delete(Products products) {
        productsDao.delete(products);
    }

    public Products findByProductId(Long productId) {
        return productsDao.findByProductId(productId);
    }
}

Daos.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       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-2.5.xsd">

    <!-- Products Data Access Object -->
    <bean id="productsDao" class="cr.dao.impl.ProductsDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

</beans>

サービス.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       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-2.5.xsd">

    <!-- Products object -->
    <bean id="productsManager" class="cr.managers.impl.ProductsManagerImpl">
        <property name="productsDao" ref="productsDao"/>
    </bean>

</beans>

BeanLocations.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       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-2.5.xsd">

    <!-- Database Configuration -->
    <import resource="../database/DataSource.xml"/>
    <import resource="../database/Hibernate.xml"/>


    <!-- Beans Declaration -->
    <import resource="../beans/daos.xml"/>
    <import resource="../beans/services.xml"/>
</beans>

データソース.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       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-2.5.xsd">

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location">
            <value>properties/database.properties</value>
        </property>
    </bean>

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="${jdbc.driverClassName}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.username}" />
        <property name="password" value="${jdbc.password}" />
    </bean>

</beans>

休止状態.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       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-2.5.xsd">

    <!-- Hibernate session factory -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource">
            <ref bean="dataSource"/>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>

    </bean>

</beans>

データベースのプロパティ

jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/schema
jdbc.username=user
jdbc.password=root

ApplicationContext.xml

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

</beans>

dispatcher-servlet.xml

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

    <!--================================= Component Scan ======================================-->
    <!-- Scans within the base package of the application for @Controller to configure as beans -->
    <!-- This entry looks for annotated classes and provides those beans in the Spring container.   -->
    <!-- So there is no need to declare bean definitions in the XML configuration -->
    <context:component-scan base-package="cr"/>

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources/ directory -->
    <mvc:resources mapping="/resources/**" location="/resources/"/>

    <mvc:annotation-driven />


    <!--SimpleUrlHandlerMapping is already configured, disabling the default HandlerMappings.
     The DispatcherServlet enables the DefaultAnnotationHandlerMapping, which looks for @RequestMapping annotations on @Controllers. -->
    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
        <!-- Based on the value of the order property Spring sorts all handler mappings available in the context and applies the first matching handler. -->
        <property name="order" value="1"/>
    </bean>

</beans>

logging.properties

org.apache.catalina.core.ContainerBase.[Catalina].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].handlers = java.util.logging.ConsoleHandler

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
          http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
           version="2.5">

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.form</url-pattern>
    </servlet-mapping>
</web-app>
4

3 に答える 3

2

ここでエラーが発生します。

private ProductsManager productsManager;

@Autowired
public ProductsController(ProductsManager productsManager) {
    this.productsManager = productsManager;
}

これは、Bean を自動配線する適切な方法ではありません。

そのすべてを

@Autowired
private ProductsManager productsManager;

そのためのコンストラクターを作成する必要はありません。または、setter で Bean を自動配線することもできます。

private ProductsManager productsManager;

@Autowired
public setProductsManager(ProductsManager productsManager) {
    this.productsManager = productsManager;
}
于 2013-02-14T10:28:50.820 に答える
2
  1. applicationContext.xml は Bean 定義を含む XML ファイルをインポートしないため、これらは処理されません
  2. MVC ディスパッチャー サーブレットは、Spring アノテーション付きクラスの「cr」パッケージをスキャンします。ProductsManager クラスには注釈が付けられていないため、コンポーネント スキャンでは検出されませんが、ProductsController クラスが検出され、Spring が ProductsManager クラスを認識していないため、インスタンス化できません。

推奨事項:

メイン アプリケーション コンテキストで Bean 定義 XML をインポートします。ルート コンテキストで ProductsController をインスタンス化しないでください。すべての @Controller Bean は MVC サーブレット コンテキストに属している必要があります。これは、MVC xml の次のタグで実現できます。

<context:component-scan base-package="cr" use-default-filters="false">
    <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

メインコンテキストでは、クラスに @Component アノテーションを追加して、これを使用します。

<context:component-scan base-package="cr" use-default-filters="true">
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

または、コンポーネントのスキャンを完全にスキップして、Bean を XML で手動で定義します

于 2013-02-13T19:19:09.393 に答える
0

オプション1:-

web.xmlにservices.xmlをロードします

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext.xml</param-value>
 //Load Services.xml here like <param-value>actualPath/services.xml</param-value>
</context-param>

dao.xmlをservice.xmlにインポートします

//Like <import resource="classpath:actualClassPath/dao.xml" />

それで

コントローラーでproductsManagerを直接自動配線できます。productsManagerでproductsDaoを直接自動配線できます。

productsManagerを自動配線するため、コントローラーにコンストラクターは必要ありません。productsDaoを自動配線するため、productsManagerにコンストラクターは必要ありません。

以下のBean構成で十分です。

<bean id="productsManager" class="cr.managers.impl.ProductsManagerImpl"/>

コントローラには以下のコードで十分です。

@Controller
@RequestMapping("/Products")
public class ProductsController {
 @Autowired    
 private ProductsManager productsManager;

 @RequestMapping(value = "/products/{productId}",
                    method = RequestMethod.GET)

 @ResponseBody
 public Products findByProductId(@PathVariable long productId) {
    Products products = productsManager.findByProductId(productId);
    return products;
  }
 }

オプション2:-(これはお勧めしません(これは理解を深めるためです))

applicationContext.xmlでproductsManager、productsDaoBeanを定義します

それから

上記のコードのようにコントローラーを変更すると、動作します。

于 2013-02-14T12:07:59.200 に答える