1

私はSpring MVCと休止状態の初心者です。私はスランプに陥っているので、皆さんが助けてくれることを願っています. 実行するたびに、Bean の作成中に例外エラーが発生します。インターネットで正しい答えが見つからないようです。ここに欠けているものを見つけることができないようです。皆さんが私を助けてくれることを願っています。私の Context.xml

           <?xml version="1.0" encoding="UTF-8"?>
        <beans:beans xmlns="http://www.springframework.org/schema/mvc"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:beans="http://www.springframework.org/schema/beans"
            xmlns:tx="http://www.springframework.org/schema/tx"
            xmlns:context="http://www.springframework.org/schema/context"
            xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
                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">

            <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

            <!-- Enables the Spring MVC @Controller programming model -->
            <annotation-driven />

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

            <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
            <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
                <beans:property name="prefix" value="/WEB-INF/views/" />
                <beans:property name="suffix" value=".jsp" />
            </beans:bean>


                <context:annotation-config/>
                <context:component-scan base-package="com.test.cedric." />
                <beans:bean id="departmentController" class="com.test.cedric.controller.DepartmentController" />
                 <beans:bean id="departmentDaoImpl" class="com.test.cedric.dao.DepartmentDaoImpl">

            </beans:bean>
                 <beans:bean id="departmentServiceImpl" class="com.test.cedric.service.DepartmentServiceImpl">

            </beans:bean>

        </beans:beans>

        <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE hibernate-configuration PUBLIC
            "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
            "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

    My hibernate.cfg.xml
        <hibernate-configuration>
            <session-factory>
                <!-- Database connection settings -->
                <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
                <property name="connection.url">jdbc:mysql://localhost:3306/test1</property>
                <property name="connection.username">root</property>
                <property name="connection.password"></property>

                <!-- JDBC connection pool (use the built-in) -->
                <property name="connection.pool_size">1</property>

                <!-- SQL dialect -->
                <property name="dialect">org.hibernate.dialect.MySQLDialect</property>

                <!-- Enable Hibernate's automatic session context management -->
                <property name="current_session_context_class">thread</property>

                <!-- Disable the second-level cache  -->
                <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

                <!-- Echo all executed SQL to stdout -->
                <property name="show_sql">false</property>

                <property name="hbm2ddl.auto">validate</property>

                <mapping resource="com.test.cedric.model.Department"/>


            </session-factory>
        </hibernate-configuration>

私のサービスコード

         package com.test.cedric.service;

        import java.util.List;

        import org.springframework.beans.factory.annotation.Autowired;
        import org.springframework.stereotype.Service;
        import org.springframework.transaction.annotation.Transactional;

        import com.test.cedric.dao.DepartmentDao;
        import com.test.cedric.dao.DepartmentDaoImpl;
        import com.test.cedric.model.Department;

        @Service

        public class DepartmentServiceImpl implements DepartmentService{

            @Autowired
            DepartmentDao dDao;
            @Transactional 
            @Override
            public void addDept(Department department) {
                dDao.addDept(department);
                // TODO Auto-generated method stub

            }

            @Override
            public void delDept(Department department) {
                dDao.delDept(department);
                // TODO Auto-generated method stub

            }

            @Override
            public void editDept(Department department) {
                dDao.editDept(department);
                // TODO Auto-generated method stub

            }

            @Override
            public List<Department> getAllDept() {
                // TODO Auto-generated method stub
                return dDao.getAll();
            }

            @Override
            public Department getDeptById(int dept_id) {
                // TODO Auto-generated method stub
                return null;
            }


        }

私のDAO

            package com.test.cedric.dao;

        import java.util.List;

        import org.hibernate.SessionFactory;
        import org.springframework.beans.factory.annotation.Autowired;
        import org.springframework.stereotype.Repository;

        import com.test.cedric.model.Department;

        @Repository
        public class DepartmentDaoImpl implements DepartmentDao {

            @Autowired
            SessionFactory sessionFactory;
            @Override
            public void addDept(Department department) {
                sessionFactory.getCurrentSession().saveOrUpdate(department);

            }

            @Override
            public void delDept(Department department) {
                sessionFactory.getCurrentSession().delete(department);

            }

            @Override
            public void editDept(Department department) {
                sessionFactory.getCurrentSession().saveOrUpdate(department);
                // TODO Auto-generated method stub

            }

            @SuppressWarnings("unchecked")
            @Override
            public List<Department> getAll() {
                sessionFactory.getCurrentSession().createQuery("From Department");
                // TODO Auto-generated method stub
                return sessionFactory.getCurrentSession().createQuery("From Department").list();
            }

            @Override
            public Department getDeptById(int dept_id) {
                // TODO Auto-generated method stub
                return null;
            }

        }
4

2 に答える 2

1

まず、次のものがあります

<context:component-scan base-package="com.test.cedric." />
<beans:bean id="departmentController" class="com.test.cedric.controller.DepartmentController" />
<beans:bean id="departmentDaoImpl" class="com.test.cedric.dao.DepartmentDaoImpl">
</beans:bean>
<beans:bean id="departmentServiceImpl" class="com.test.cedric.service.DepartmentServiceImpl">
</beans:bean>

component-scan、宣言したパッケージをスキャンし、アノテーション、、、、、またはが見つかった場合は、@ComponentBeanインスタンス@Serviceを作成します。そのため、上記の独自の Bean 宣言は冗長です。それらを取り除きます。@Repository@Controller@Configuration

第二に、表示していない限り、実際にはSessionFactoryオートワイヤーの候補となる Bean はありません。hibernate 構成<session-factory>要素は、Spring コンテキスト Bean とは関係ありません。2つを接続したい場合は、使用できます

<bean
    id="sessionFactory"
    class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="configLocation">    
        <value>
            classpath:location_of_config_file/hibernate.cfg.xml
        </value>
    </property>
    <property name="hibernateProperties">
        <props>
            ...    
        </props>    
    </property>

</bean>
于 2013-09-22T15:45:28.713 に答える
0

ご提供いただいた内容から、sessionFactory の Bean 構成が欠落しているようです。使用する各 @Autowire アノテーションは、Spring Bean に対応する必要があります。したがって、Context.xml に次のようなものを追加する必要があります。

<beans:bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    ... bean configuration properties ...
</beans:bean>

AnnotationSessionFactoryBean は、使用する実際の Bean ではない場合があります。それを行うにはさまざまな方法があり、何をしたいのかを調べるために検索できます。ただし、必ず「sessionFactory」という Bean の定義を追加する必要があります。

于 2013-09-22T15:52:01.937 に答える