1

私は以下を実装しようとしています: SpringSecurity ログアウトハンドラーで DB からいくつかの詳細をクリアします。DBからユーザーの詳細を取得しようとした後、このエラーが発生するという主な問題。残りのコードと同じメソッドでさえ、他の場合には正常に機能します。

public class CurrentUserLogoutSuccessHandler extends SimpleUrlLogoutSuccessHandler {

    /**
     * 
     */
    @Autowired
    private RequestsService requestsService;

    /**
     * 
     */
    @Autowired
    private OffersService offersService;

    /**
     * 
     */
    @Autowired
    private UsersService usersService;

    /**
     * 
     */
    @Override
    public void onLogoutSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication)
            throws IOException, ServletException {
        if (authentication != null) {
            UserDetailsExtended details = (UserDetailsExtended) authentication.getPrincipal();
            User user = usersService.get(details.getId()); // fails here

            requestsService.unlockAllByBackoffice(user);
            offersService.unlockAllByBackoffice(user);
        }

        setDefaultTargetUrl("/");
        super.onLogoutSuccess(request, response, authentication);
    }
}

構成:

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan" value="com.ejl.butler.object.data" />
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
                <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
                <prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
                <prop key="hibernate.cache.region.factory_class">${hibernate.cache.region.factory_class}</prop>
           </props>
        </property>
    </bean>
    <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

ダオ:

public User get(final Long id) {
        Session session = SessionFactoryUtils.getSession(sessionFactory, false);

        return (User) session.get(User.class, id);
    }

春のセキュリティ設定:

<logout invalidate-session="true" logout-url="/logout" success-handler-ref="logoutSuccessHandler"/>

例外:

No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here
    at org.springframework.orm.hibernate3.SessionFactoryUtils.doGetSession(SessionFactoryUtils.java:356)
    at org.springframework.orm.hibernate3.SessionFactoryUtils.getSession(SessionFactoryUtils.java:202)

@Transactional問題は解決しましたが、理由がわかりませんか? つまり、他のすべての呼び出しでこのハンドラーでのみ失敗するということです。このメソッドは、このアノテーションがなくても正常に機能します。

前もって感謝します!

UPD:私の一時的な解決策は、メソッド@Transactional全体に追加することonLogoutSuccessです..動作します)

4

1 に答える 1

1

TransactionManager春のコンテキストでa を定義した場合@Transactionalは、スタック内のどこかを指定する必要があります。そうしないと、トランザクションの外部でクエリを実行しようとしているため、発生した例外が発生します。

これには回避策がありcurrent_session_context_class、休止状態の構成でthreadまたはに指定する

<property name="current_session_context_class">org.hibernate.context.ThreadLocalSessionContext</property>

ただし、本番環境では安全ではありません。.

の可能な値current_session_context_classjtathreadおよびmanagedです。それに加えて、すぐに使える休止状態でサポートされていますjta。context は、ほとんどのスタンドアロンの休止状態アプリまたは Spring などの軽量フレームワークに基づくアプリで使用され、Java EE 環境で使用されます。threadthreadjta

sessionFactory.getCurrentSession()の代わりにも試してみてくださいSessionFactoryUtils.getSession()

于 2013-09-04T09:34:42.587 に答える