1.创建一个类
/** * @author: zhaobin * @date: 2021/11/25 10:16 * @description: */public class cat { public cat(){ system.out.pri南通大学怎么样ntln("先初始化构造器"); } public void start(){ system.out.println("st师恩难忘art方法"); } 写人的优美句子 public void destroy(){ system.out.println("销毁方法"); }}
2.创建一个bean
/** * @author: zhaobin * @date: 2021/11/25 10:14 * @description: */@configurationpublic class eventconfig { @bean(initmethod = "start",destroymethod = "destroy") public cat create(){ cat cat = new cat(); system.out.println(个人与团队管理"接下来初始化cat中的start方法"); //return一个宠物类,这样spring容器中就有了这个cat类,才能执行initmethod中的start方法.以及容器关闭的时候执行销毁的方法 retu5月22日是什么节日rn cat; }}
3.加载的顺序为: create方法->cat类的构造器->create方法中的输出打印->cat类中的start方法->cat类中的destroy方法
到此这篇关于spring中为bean指定initmethod和destroymethod的执行方法的文章就介绍到这了,更多相关spring bean执行方法内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-03 23:01:16,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/ef4648988749e1a115c1b8ef381c8f6c.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Spring中为bean指定InitMethod和DestroyMethod的执行方法.doc
本文 PDF 下载地址:Spring中为bean指定InitMethod和DestroyMethod的执行方法.pdf
留言与评论(共有 0 条评论) |