溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring中怎么實(shí)現(xiàn)初始化

發(fā)布時(shí)間:2021-08-07 14:19:05 來(lái)源:億速云 閱讀:137 作者:Leah 欄目:編程語(yǔ)言

本篇文章為大家展示了Spring中怎么實(shí)現(xiàn)初始化,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

一 指定初始化和銷毀方法

通過(guò)@Bean指定init-method和destroy-method;

@Bean(initMethod="init",destroyMethod="detory")   public Car car(){     return new Car();   }

二 通過(guò)讓Bean實(shí)現(xiàn)InitializingBean(定義初始化邏輯)

@Componentpublic class Cat implements InitializingBean,DisposableBean {    public Cat(){    System.out.println("cat constructor...");  }  @Override  public void destroy() throws Exception {    // TODO Auto-generated method stub    System.out.println("cat...destroy...");  }  @Override  public void afterPropertiesSet() throws Exception {    // TODO Auto-generated method stub    System.out.println("cat...afterPropertiesSet...");  }}

三 可以使用JSR250

@PostConstruct:在bean創(chuàng)建完成并且屬性賦值完成;來(lái)執(zhí)行初始化方法@PreDestroy:在容器銷毀bean之前通知我們進(jìn)行清理工作@Componentpublic class Dog implements ApplicationContextAware {  //@Autowired  private ApplicationContext applicationContext;    public Dog(){    System.out.println("dog constructor...");  }    //對(duì)象創(chuàng)建并賦值之后調(diào)用  @PostConstruct  public void init(){    System.out.println("Dog....@PostConstruct...");  }    //容器移除對(duì)象之前  @PreDestroy  public void detory(){    System.out.println("Dog....@PreDestroy...");  }  @Override  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {    // TODO Auto-generated method stub    this.applicationContext = applicationContext;  }}

四 可以使用BeanPostProcessor

/** * 后置處理器:初始化前后進(jìn)行處理工作 * 將后置處理器加入到容器中 * 在bean初始化前后進(jìn)行一些處理工作; * postProcessBeforeInitialization:在初始化之前工作 * postProcessAfterInitialization:在初始化之后工作 */@Componentpublic class MyBeanPostProcessor implements BeanPostProcessor,Ordered {  @Override  public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {    // TODO Auto-generated method stub    System.out.println("postProcessBeforeInitialization..."+beanName+"=>"+bean);    return bean;  }  @Override  public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {    // TODO Auto-generated method stub    System.out.println("postProcessAfterInitialization..."+beanName+"=>"+bean);    return bean;  }  @Override  public int getOrder() {    return 2;  }}

上述內(nèi)容就是Spring中怎么實(shí)現(xiàn)初始化,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI