spring-core

北战南征 提交于 2019-12-04 13:06:55

spring-framework 框架里面包含有 spring-core 包,这个包有6个a组件构成

asm  cglib  core  lang  objenesis  util
asm       提供了web 的基本操作
lang      提供了java 语言不同版本兼容的功能.
Objenesis 实例化对象的方式.
util      提供了 compare, backoff, xml, concurrent 的方式.
cglib
core      提供了基本核心模块IO/serial,codec,convert 等.
fd version
core/SpringVersion.java
 * @author Juergen Hoeller
 * @since 1.1
 */
public class SpringVersion {

    /**
     * Return the full version string of the present Spring codebase,
     * or {@code null} if it cannot be determined.
     * @see Package#getImplementationVersion()
     */
    @Nullable
    public static String getVersion() {
        Package pkg = SpringVersion.class.getPackage();
        return (pkg != null ? pkg.getImplementationVersion() : null);
    }

}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!