2

休止状態に少し問題があります。

私はいくつかの単純なDAOを持っています

@Repository
public class UserDAOImpl implements UserDAO {

@Autowired
private SessionFactory sessionFactory;

private Session openSession() {
    return sessionFactory.getCurrentSession();
}
@Transactional
public User getUser(String login) {
    List<User> userList;
    Query query = openSession().createQuery("from User u where u.login = :login");
    query.setParameter("login", login);
    userList = query.list();
    if (userList.size() > 0)
        return userList.get(0);
    else
        return null;    
}
}

ここでは、sessionFactory の Bean 構成

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

@Transactional アノテーションを削除するpublic User getUser(String login)と、

org.hibernate.HibernateException: No Session found for current thread
org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:941)

私はどこにいますか?

4

0 に答える 0