All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.totoCastaldi.restServer.plugin.PersistenModule Maven / Gradle / Ivy

package com.github.totoCastaldi.restServer.plugin;

import com.google.inject.persist.PersistFilter;
import com.google.inject.persist.jpa.JpaPersistModule;
import com.google.inject.servlet.ServletModule;

/**
 * Created by toto on 14/11/15.
 */
class PersistenModule extends ServletModule {

    @Override
    protected void configureServlets() {
       install(new JpaPersistModule("jpa-unit"));

       filter("/*").through(PersistFilter.class);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy