gpt4 book ai didi

java - @PostConstruct @PreDestroy

转载 作者:太空宇宙 更新时间:2023-11-04 10:11:14 26 4
gpt4 key购买 nike

jdk9@PostConstruct@PreDestroy位于 java.xml.ws.annotation已弃用并计划删除。

我想知道删除它们后该使用什么,并且由于很多框架和项目都在使用它们,所以也不会成为问题?

最佳答案

我在 this link 上找到了答案

此示例只是第一个示例,您应该为最新的修改准备代码:

@Component
public class MyBean implements InitializingBean, DisposableBean {

private void init() {
//TODO: init code
}


private void shutdown() {
//TODO: destroy code
}

@Override
public void afterPropertiesSet() throws Exception {
init();
}

@Override
public void destroy() throws Exception {
shutdown();
}
}

关于java - @PostConstruct @PreDestroy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52291019/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com