public class Bean { @PostConstruct public void initialize() { // Code } }
public class Bean implements InitializingBean { @Override public void afterPropertiesSet() throws Exception { // Code } }
Last updated 5 years ago
Was this helpful?