Example usage for org.springframework.beans.factory InitializingBean interface-usage

List of usage examples for org.springframework.beans.factory InitializingBean interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory InitializingBean interface-usage.

Usage

From source file org.springframework.batch.core.launch.EmptyItemWriter.java

/**
 * Mock {@link ItemWriter} that will throw an exception when a certain number of
 * items have been written.
 */
public class EmptyItemWriter<T> implements ItemWriter<T>, InitializingBean {

From source file com.googlecode.spring.appengine.api.factory.MemcacheServiceFactoryBean.java

/**
 * {@link FactoryBean} that creates a {@link MemcacheService}.
 * 
 * <p>Example configuration:
 * 
 * <pre class="code">

From source file net.cpollet.jixture.fixtures.transformers.FixtureTransformerFactory.java

/**
 * @author Christophe Pollet
 */
public class FixtureTransformerFactory implements InitializingBean {
    @SuppressWarnings("MismatchedQueryAndUpdateOfCollection")
    @Autowired

From source file com.tasktop.c2c.server.common.service.HttpProxySetup.java

/**
 * <ul>
 * <li>Propagates system environment proxy values to Java system properties.</li>
 * <li>Configures no_proxy configuration for requests to profile/hub addresses.</li>
 * </ul>
 * 

From source file com.flipkart.aesop.adapter.EntityAdapter.java

/**
 * This class is a utility class provided to adapt the destination Event to an Entity which you want to process.
 * Note: To use this, it assumes that the FieldMap Pair has been correctly transformed ( processable by
 * object Mapper) either in the
 * pre-mapping phase or the post mapping phase of the AbstractEvent.
 * @param <T>

From source file com.sybase365.mobiliser.custom.project.businesslogic.impl.BlacklistTypeLogicImpl.java

/**
 * Logic for handling the types of blacklists.
 *
 * @since 2012-02-03
 */
public class BlacklistTypeLogicImpl implements InitializingBean, IBlacklistTypeLogic {

From source file org.skife.jdbi.v2.spring.DBIFactoryBean.java

/**
 * Utility class which constructs an IDBI instance which can conveniently participate
 * in Spring's transaction management system.
 */
public class DBIFactoryBean implements FactoryBean, InitializingBean {
    private DataSource dataSource;

From source file org.esco.portlets.news.services.group.GroupServiceImpl.java

/**
 * General Services for groups.
 * @author GIP RECIA - Gribonvald Julien
 * 31 mai 2010
 */
@Service("groupService")

From source file org.springframework.boot.devtools.autoconfigure.HateoasObjenesisCacheDisabler.java

/**
 * Replaces the Objenesis instance in Spring HATEOAS's {@code DummyInvocationUtils} with
 * one that does not perform any caching. The cache is problematic as it's keyed on class
 * name which leads to {@code ClassCastExceptions} as the class loader changes across
 * restarts.
 *

From source file org.trpr.platform.batch.impl.spring.writer.CompositeItemWriter.java

/**
 * The <code>CompositeItemWriter</code> class is an implementation of the {@link ItemWriter} that implements the Composite design
 * pattern of executing all invoked operations on delegate ItemWritersS. This ItemWriter supports grouping of data items via the optional {@link ItemAggregator} implementation
 * injected to this CompositeItemWriter.
 * 
 * @author Regunath B