💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] # 初始化方法和销毁方法 ~~~ @PostConstruct // 在对象创建后调用,init-method public void init() { System.out.println("我是初始化方法!"); } @PreDestroy // 在销毁之前调用.destory-method public void destory() { System.out.println("我是销毁方法!"); } ~~~