首页 > 编程语言 > 详细

spring__使用注解开发

时间:2021-04-24 20:30:13      阅读:24      评论:0      收藏:0      [点我收藏+]
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context = "http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd">
      <!--指定要扫描的包,这个包下的注解就会生效-->
    <context:component-scan base-package="edu.cqupt"/>
    <context:annotation-config/>
</beans>
  • bean

@Component: 组件,放在类上,说明这个类被Spring管理了,就是bean!

      等价于:  <bean id="user" class="edu.cqupt.pojo.User"/>

  • 属性如何注入

@Value("shi-lin")

等价于:<property name="name" value="shi-lin"/>

 

  • 衍生的注解
    • @Component有几个衍生的注解,我们在web开发中,会安装mvc三层架构分层。
      • dao【@Repository
      • service【@Service
      • controller【@Controller
    • 这四个注解功能都是一样的,都是代表将某个类注册到Spring中,转配Bean
  • 自动装配
    • @Autowired: 自动装配通过类型,名字-- 如果 若果Autowired不能唯一自动转配上属性,则需要通过@Qualified(value="xxx")
    • @Nullable: 字段标记了这个注解,说明这个字段可以为null  
    • @Resource: 自动装配通过名字,类型
  • 作用域
    • @Scope("singleton")
    • @Scope("prototype")
  • 小结
    • xml 与 注解:
      • xml:更加万能,适用于任何场合、维护简单方便
      • 注解: 不是自己的类,使用不了,维护相对复杂
    • 最佳实践
      • xml用来管理Bean
      • 注解只用于属性注入
      • 在使用的过程中,只需要注意一个问题,必须让注解生效,开启注解支持

spring__使用注解开发

原文:https://www.cnblogs.com/yuanlianyao/p/14697465.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!