8、Spring使用注解开发

8、使用注解开发

在Spring4之后,要使用注解开发,必须要保证aop的包导入了

8、Spring使用注解开发_第1张图片

使用注解需要导入context的约束,增加注解的支持


<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:annotation-config/>
    
beans>


1.bean

2.属性如何注入

//等价于
//@Component组件
@Component
public class User {
    // 相当于
    @Value("gongyi")
    public String name;
    //@Value("muzi")
    public void setName(String name) {
        this.name = name;
    }
}

3.衍生的注解

@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!

  • dao【@Repository】
  • service【@Service】
  • controller【@Controller】

这四个注解功能都是一样的,都是代表将某个类注册到spring中,装配bean

4.自动装配

- Autowired:自动装配通过类型。名字
    如果Autowired不能唯一自动装配上属性,则需要通过 @Qualifier(value = "xxx")
- @Nullable 字段标记了这个注解,说明这个字段可以为null
- Resource:自动装配通过名字。类型

5.作用域

@Component
@Scope("singleton")
public class User {
    // 相当于
    @Value("gongyi")
    public String name;
    //@Value("muzi")
    public void setName(String name) {
        this.name = name;
    }
}

6.小结

xml与注解:

  • xml更加万能,适用于任何场合,维护简单方便
  • 注解 不是自己类使用不了(比如DataSource类),维护相对复杂

xml与注解最佳实践:

  • xml用来管理bean

  • 注解只负责完成属性的注入

  • 我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持

    
    <context:component-scan base-package="com.gongyi"/>
    
    <context:annotation-config/>
    

代码show

代码结构图:

8、Spring使用注解开发_第2张图片

1.新建一个模块:spring-06-anno

2.新建pojo包及类

//等价于
//@Component组件
@Component
@Scope("singleton")
public class User {
    // 相当于
    @Value("gongyi")
    public String name;
    //@Value("muzi")
    public void setName(String name) {
        this.name = name;
    }
}

3.新建dao包及类

@Repository
public class UserDao {
}

4.新建service包及类

@Service
public class UserService {
}

5.新建controller包及类

@Controller
public class UserController {
}

6.新建配置文件applicationContext.xml


<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="com.gongyi"/>
    
    <context:annotation-config/>


beans>


7.测试

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        User user = (User) context.getBean("user");
        System.out.println(user.name);
    }
}

彩蛋

1.被spring托管的类在idea中的显示

1)未被托管前

8、Spring使用注解开发_第3张图片

2)配置托管

8、Spring使用注解开发_第4张图片

3)托管后

8、Spring使用注解开发_第5张图片

你可能感兴趣的:(Spring5学习,spring,mvc,java)