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 com.db2eshop.gui.component.DashBoard.java

/**
 * <p>DashBoard class.</p>
 *
 * @author Denis Neuling (denisneuling@gmail.com)
 * 
 */

From source file com.jdonee.framework.util.commons.cache.memcached.MemcachedSimulator.java

/**
 * JMemcached?, ?.
 * 
 * @author calvin
 */
public class MemcachedSimulator implements InitializingBean, DisposableBean {

From source file org.mule.extras.springproxies.SynchClientInvokerInterceptor.java

/**
 * Invoker to make a synchronous call to a Mule Server
 */
public class SynchClientInvokerInterceptor implements MethodInterceptor, InitializingBean {

    protected transient Log logger = LogFactory.getLog(getClass());

From source file de.hybris.platform.ebookb2bacceleratorstorefront.filters.btg.support.impl.DefaultUrlParsingStrategy.java

/**
 * Default implementation of {@link UrlParsingStrategy}
 */
public class DefaultUrlParsingStrategy implements UrlParsingStrategy, InitializingBean {
    private String regex;
    private Pattern pattern;

From source file org.springframework.beans.factory.config.CommonsLogFactoryBean.java

/**
 * Factory bean for
 * <a href="http://jakarta.apache.org/commons/logging.html">commons-logging</a>
 * {@link org.apache.commons.logging.Log} instances.
 *
 * <p>Useful for sharing Log instances among multiple beans instead of using

From source file org.mongeez.MongeezRunner.java

    /*
 * Copyright 2011 SecondMarket Labs, LLC.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.

From source file org.springbyexample.jdbc.datasource.HsqldbInitializingDriverManagerDataSource.java

/**
 * <p>HSQL DB specific initializing <code>DriverManagerDataSource</code>.
 * If values aren't set for driver class name, url, username, or password
 * defaults for an in memory HSQL DB are used.</p>
 *
 * <p>After the properties are set any database initialization scripts are run.

From source file org.zalando.spring.data.businesskey.config.BusinessKeyHandler.java

/**
 * @author  Joerg Bellmann
 */
public class BusinessKeyHandler implements InitializingBean {

    private static final Logger LOGGER = LoggerFactory.getLogger(BusinessKeyHandler.class);

From source file org.kuali.rice.core.api.security.credentials.CredentialsSourceFactory.java

/**
 * CredentialsSourceFactory constructs or returns an existing instance of a
 * CredentialsSource based on the type of Credentials requested.
 * <p>
 * It will return null if it cannot find or create an instance of the required
 * type.

From source file co.paralleluniverse.common.spring.Component.java

/**
 * An object instance initialized by the Spring container.
 * 
 * Subclasses with methods annotated with {@code org.springframework.jmx.export.annotation.ManagedAttribute} must be public for the property to 
 * be properly exposed in the MBean.
 */