首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Spring 学习笔记(4)

Spring 学习笔记(4)

IOC 注解开发示例
  •         引入jar包: 除了要引入上述的四个包之外,还需要引入aop包。
  •         创建 applicationContext.xml ,使用注解开发引入 context 约束(xsd-configuration.html)
<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 http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
        <!-- bean definitions here -->
</beans>
  •         组件扫描: 使用IOC注解开发,需要配置组件扫描,也就是哪些包下的类使用IOC的注解。
<context:component-scan base-package="demo1">
  •         在类上添加注解
  •         使用注解设置属性的值
属性如果有set方法,将属性注入的注解添加到set方法
属性没有set方法,将注解添加到属性上。
@Component("UserDao")//相当于配置了一个<bean> 其id为UserDao,对应的类为该类
public class UserDAOImpl implements UserDAO {
@Override
public void save() {
// TODO Auto-generated method stub
System.out.println("save");
}
}
注解详解
  •         @Component
组件注解,用于修饰一个类,将这个类交给 Spring 管理。
有三个衍生的注解,功能类似,也用来修饰类。
  •         @Controller:修饰 web 层类
  •         @Service:修饰 service 层类
  •         @Repository:修饰 dao 层类
2.属性注入
  •         普通属性使用 @Value 来设置属性的值
  •         对象属性使用 @Autowired  ,这个注解是按照类型来进行属性注入的。如果希望按照 bean 的名称或id进行属性注入,需要用 @Autowired 和 @Qualifier 一起使用
  •         实际开发中,使用 @Resource(name=" ") 来进行按照对象的名称完成属性注入
3.其他注解
  •         @PostConstruct 相当于 init-method,用于初始化函数的注解
  •         @PreDestroy 相当于 destroy-method,用于销毁函数的注解
  •         @Scope 作用范围的注解,常用的是默认单例,还有多例 @Scope("prototype")
IOC 的 XML 和注解开发比较
  •         适用场景:XML 适用于任何场景;注解只适合自己写的类,不是自己提供的类无法添加注解。
  •         可以使用 XML 管理 bean,使用注解来进行属性注入
返回列表