com.google.inject.persist.PersistModule Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2010 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.inject.persist;
import static com.google.inject.matcher.Matchers.annotatedWith;
import static com.google.inject.matcher.Matchers.any;
import com.google.inject.AbstractModule;
import com.google.inject.internal.InternalFlags;
import com.google.inject.matcher.AbstractMatcher;
import com.google.inject.matcher.Matcher;
import java.lang.reflect.Method;
import org.aopalliance.intercept.MethodInterceptor;
/**
* Install this module to add guice-persist library support for JPA persistence providers.
*
* @author [email protected] (Dhanji R. Prasanna)
*/
public abstract class PersistModule extends AbstractModule {
@Override
protected final void configure() {
configurePersistence();
requireBinding(PersistService.class);
requireBinding(UnitOfWork.class);
if (InternalFlags.isBytecodeGenEnabled()) {
// class-level @Transacational
bindInterceptor(
annotatedWith(Transactional.class), NOT_OBJECT_METHOD, getTransactionInterceptor());
// method-level @Transacational
bindInterceptor(any(), annotatedWith(Transactional.class), getTransactionInterceptor());
}
}
protected abstract void configurePersistence();
protected abstract MethodInterceptor getTransactionInterceptor();
private static final Matcher NOT_OBJECT_METHOD =
new AbstractMatcher() {
@Override
public boolean matches(Method m) {
return !Object.class.equals(m.getDeclaringClass());
}
};
}