美文网首页
Spring有几种配置方式 ?

Spring有几种配置方式 ?

作者: xuweiqiang | 来源:发表于2019-06-12 09:18 被阅读0次

    Spring有几种配置方式 ?
    基于XML文件的配置 这种配置文件的格式常用<beans>开头,然后运用一系列的bean定义和专门的应用配置选项组成。 Spring XML配置方式是使用被Spring命名空间所支持的一些列XML的标签来实现的。
    基于注解的配置 可以使用注解的方式来代替XML方式的bean元素的配置。这就是组件扫描,常用依赖注入的一些注解有: @Controller @Service @Autowired @RequestMapping @RequestParam @ModelAttribute @Cacheable @CacheFlush @Resource @PostConstruct @PreDestroy @Repository @Scope @SessionAttributes @InitBinder @Required @Qualifier
    组件扫描: 容器会扫描base-package指定的包及其子包下面的所有类,如果该类有一些特定的注解,则纳入容器进行管理。
    在类前面添加的一些特定的注解: @Component 通用注解 @Repository 持久层注解 @Service 业务层注解、 @Controller 控制层注解
    基于Java的配置

    相关文章

      网友评论

          本文标题:Spring有几种配置方式 ?

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