删除spring-core-destroyBean

master
xuchengsheng 2023-10-26 16:28:44 +08:00
parent 32b0053117
commit 9920989a84
4 changed files with 1 additions and 18 deletions

View File

@ -66,7 +66,6 @@
- [**获取Bean实例getBean()**](spring-core/spring-core-getBean/README.md) - 从Bean的定义到其实例化全面揭示Spring如何管理Bean的生命周期。
- [**解析依赖关系resolveDependency()**](spring-core/spring-core-resolveDependency/README.md) - 探索Spring如何优雅地解决Bean之间的依赖关系确保应用稳定运行。
- [**销毁Bean实例destroyBean()**](spring-core/spring-core-destroyBean/README.md) - 深入Spring的销毁策略理解如何优雅地释放资源确保应用的健壮性。
> ### 💡 后置处理器与初始化

View File

@ -13,9 +13,8 @@
<packaging>pom</packaging>
<modules>
<module>spring-core-resolveDependency</module>
<module>spring-core-getBean</module>
<module>spring-core-destroyBean</module>
<module>spring-core-resolveDependency</module>
</modules>
</project>

View File

@ -1 +0,0 @@
## TODO

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-core</artifactId>
<groupId>com.xcs.spring</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-core-destroyBean</artifactId>
</project>