PersistentMBean

PersistentMBean

영속적(persistent)으로 유지하려는 MBean이 구현해야 하는 인터페이스예요. 이 인터페이스를 지원하는 MBean은 생성 중에 load 메서드를 호출해 영속 저장소에서 MBean을 초기화해야 해요.

출처: Java API Reference

본문

영속적(persistent)으로 유지하려는 MBean이 구현해야 하는 인터페이스예요. 이 인터페이스를 지원하는 MBean은 생성 중에 load 메서드를 호출해 영속 저장소에서 MBean을 초기화해야 해요.

public interface PersistentMBean
public void load() throws MBeanException, RuntimeOperationsException, InstanceNotFoundException
public void store() throws MBeanException, RuntimeOperationsException, InstanceNotFoundException

더 알아보기 (Learn more)

Java 공식 API