最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

Spring面试题:(五)Spring注解开发@Component,@Autowired,@Bean,@Configuration

维修 admin 5浏览 0评论

Spring面试题:(五)Spring注解开发@Component,@Autowired,@Bean,@Configuration

Bean基本注解

spring提供注解的版本

@Component注解替代bean标签


bean其它属性的相关注解:

  • @scope 替代scope
  • @lazy 替代lazy-init
  • @PostConstruct 替代init-method
  • @PreDestroy 替代destroy-method

    使用@Component注解的前提是开启注解扫描

衍生注解Repository,Service,Controller

  • @Repository
  • @Service
  • @Controller

Bean依赖注入注解@Autowired

Autowired先根据类型匹配,如果匹配到多个,则按照名次二次匹配

@Bean注解


配置类@Configuration注解


其它注解

@Primary优先级

@Profile设置环境

Spring面试题:(五)Spring注解开发@Component,@Autowired,@Bean,@Configuration

Bean基本注解

spring提供注解的版本

@Component注解替代bean标签


bean其它属性的相关注解:

  • @scope 替代scope
  • @lazy 替代lazy-init
  • @PostConstruct 替代init-method
  • @PreDestroy 替代destroy-method

    使用@Component注解的前提是开启注解扫描

衍生注解Repository,Service,Controller

  • @Repository
  • @Service
  • @Controller

Bean依赖注入注解@Autowired

Autowired先根据类型匹配,如果匹配到多个,则按照名次二次匹配

@Bean注解


配置类@Configuration注解


其它注解

@Primary优先级

@Profile设置环境

发布评论

评论列表 (0)

  1. 暂无评论