Class GlueBeanFactoryImpl

java.lang.Object
com.poscoict.glueframework.bean.GlueBeanFactoryImpl
All Implemented Interfaces:
GlueBeanFactory

public class GlueBeanFactoryImpl extends Object implements GlueBeanFactory
BeanFactory 구현 Class. Implementation of the GlueBeanFactory interface.
  • Field Details

  • Constructor Details

    • GlueBeanFactoryImpl

      public GlueBeanFactoryImpl()
      생성자(constructor).
    • GlueBeanFactoryImpl

      public GlueBeanFactoryImpl(String configFile)
      생성자(constructor).
      Parameters:
      configFile -
    • GlueBeanFactoryImpl

      public GlueBeanFactoryImpl(String... configFiles)
      생성자(constructor).
      Parameters:
      configFiles -
  • Method Details

    • getBeanObject

      public Object getBeanObject(String key)
      Description copied from interface: GlueBeanFactory
      키 값에 해당하는 Singleton 오브젝트를 얻는다.
      Specified by:
      getBeanObject in interface GlueBeanFactory
      Parameters:
      key - Singleton 오브젝트를 구별할 수 있는 유일한 키
      Returns:
      Singleton 오브젝트
    • getBeanObject

      public <T> T getBeanObject(String key, Class<T> requiredType)
      Description copied from interface: GlueBeanFactory
      키 값에 해당하는 Singleton 오브젝트를 얻는다.
      Specified by:
      getBeanObject in interface GlueBeanFactory
      Parameters:
      key - Singleton 오브젝트를 구별할 수 있는 유일한 키
      requiredType - 오브젝트 타입
      Returns:
      Singleton 오브젝트
    • containsBean

      public boolean containsBean(String key)
      Description copied from interface: GlueBeanFactory
      키 값에 해당하는 bean의 존재여부를 반환한다.
      Specified by:
      containsBean in interface GlueBeanFactory
      Parameters:
      key - Singleton 오브젝트를 구별할 수 있는 유일한 키
      Returns:
      true - key에 해당하는 bean이 존재, false - key에 해당하는 bean이 없음.
    • getWrappedBeanFactory

      public ListableBeanFactory getWrappedBeanFactory()
      Application should not invoke this method!
      Returns:
      Wrapped bean factory
    • closeContext

      public void closeContext()