美文网首页
纯注解开发模式

纯注解开发模式

作者: 萧修 | 来源:发表于2023-07-08 01:00 被阅读0次

    Spring3.0开启了纯注解开发模式,使用JAVA类替代配置文件,开启、Spring快速开发赛道

    JAVA类替代Spring核心配置文件,这样核心配置文件就不再需要

    JAVA类文件增加注解Configuration,用于声明设定当前类为配置类,注解ComponentScan用于扫描路径,此注解只能添加一次,多个数据请用数据组格式({"com.a.b","com.a.b"})

    创建JAVA文件SpringConfig

    //声明此注解配置类
    @Configuration
    //扫描
    @ComponentScan("com.itheima")
    public class SpringConfig {
    
    }
    

    纯注解开发配置,使用这个AnnotationConfigApplicationContext

    ApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class);
    

    相关文章

      网友评论

          本文标题:纯注解开发模式

          本文链接:https://www.haomeiwen.com/subject/odehudtx.html