6 lines
90 B
Java
6 lines
90 B
Java
package com.spring;
|
|
|
|
public interface InitializingBean {
|
|
void afterPropertiesSet();
|
|
}
|