0

Spring と Hibernate を使用し、常に sessionFactory オブジェクトの NPE を取得します。

私の設定ファイル:

@Configuration
public class HibernateConfiguration {

@Bean
public AnnotationSessionFactoryBean sessionFactory() {
    Properties props = new Properties();
    props.put("hibernate.dialect", MySQL5InnoDBDialect.class.getName());
    props.put("hibernate.format_sql", "true");
    props.put("hibernate.connection.driver_class", "com.mysql.jdbc.Driver");
    props.put("hibernate.connection.password", "xxx");
    props.put("hibernate.connection.url", "jdbc:mysql://localhost/Market");
    props.put("hibernate.connection.username", "philipp");

    AnnotationSessionFactoryBean bean = new AnnotationSessionFactoryBean();
    bean.setAnnotatedClasses(new Class[] { xxx.class, xxx.class, xxx.class });
    bean.setHibernateProperties(props);
    bean.setSchemaUpdate(true);
    return bean;
}





@Bean
public HibernateTransactionManager transactionManager() {
    return new HibernateTransactionManager(sessionFactory().getObject());
}

@Bean
public PersistenceExceptionTranslationPostProcessor persistenceExceptionTranslationPostProcessor() {
    return new PersistenceExceptionTranslationPostProcessor();
}

}

私のDAOImplクラス:

@Repository("xxx")
public class xxxDAOImpl implements xxxDAO {

private SessionFactory sessionFactory;

@Autowired
public void setSessionFactory(SessionFactory sessionFactory) {
    this.sessionFactory = sessionFactory;
}

private Session currentSession() {
    return sessionFactory.getCurrentSession();
}
...

テストケース:

@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
public class TestxxxDAOImpl {

@Test
@Transactional
public void testInsertxxx() throws Exception {

    xxxDAO xxxDAO = new xxxDAOImpl();
    xyz xyz = new xyz();
    xxxDAO.insert(xyz);
    assertNotNull(xyz.getId());
    }

}

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


<tx:annotation-driven transaction-manager="transactionManager" />
<context:component-scan base-package="xxx.config" />
<context:component-scan base-package="xxx.dao" />
<context:annotation-config></context:annotation-config>

テストコンテキスト.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" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

<import resource="classpath:/META-INF/spring/app-context.xml" />

テストが挿入メソッドを呼び出すと、常に currentSession から NPE を取得します。

public void insert(xxx xxx) {
    currentSession().save(xxx);
}


private Session currentSession() {
    return sessionFactory.getCurrentSession();
}
4

2 に答える 2

-1

xxxDAOImpl クラスの currentSession() 関数内の sessionFactory.getCurrentSession() の代わりに、sessionFactory.openSession() を使用します。

最初の呼び出しでは、セッション ファクトリに現在のセッションがないため、セッションを開く必要があります。

これがお役に立てば幸いです。乾杯。

于 2012-06-06T12:47:28.610 に答える