Example usage for org.springframework.orm.jpa.support OpenEntityManagerInViewFilter subclass-usage

List of usage examples for org.springframework.orm.jpa.support OpenEntityManagerInViewFilter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.orm.jpa.support OpenEntityManagerInViewFilter subclass-usage.

Usage

From source file org.cruxframework.mediamanager.model.spring.filter.CustomOpenEntityManagerInViewFilter.java

/**
 * Class description:
 * @author alexandre.costa
 */
public class CustomOpenEntityManagerInViewFilter extends OpenEntityManagerInViewFilter {
    /**

From source file org.apdplat.platform.filter.OpenEntityManagerInViewFilter.java

/**
*JPA?
* @author ??
*/
public class OpenEntityManagerInViewFilter
        extends org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter {

From source file vlove.spring.jpa.OptionalOpenEntityManagerInViewFilter.java

/**
 * Spring object that allows us to open EMF connections only if we really need to.
 * 
 * @author Michael Laccetti
 */
public class OptionalOpenEntityManagerInViewFilter extends OpenEntityManagerInViewFilter {

From source file com.google.code.guice.repository.filter.PersistFilter.java

/**
 * <p>
 * <b>guice-repository</b> adapted version of {@link OpenEntityManagerInViewFilter}.
 * This filter binds a JPA EntityManager to the thread for the entire processing of the request.
 * Intended for the "Open EntityManager in View"/<a href="http://code.google.com/p/google-guice/wiki/JPA">session-in-view/session-per-http-request</a>
 * pattern, i.e. to allow for lazy loading in web views despite the original transactions already being completed.