IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 使用注解开发 -> 正文阅读

[Java知识库]使用注解开发

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

?

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

精简版:

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

</beans>

扩展版:?

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

    <!--
      指定要扫描的包,这个包下的注解就会生效
      -->
    <context:component-scan base-package="com.gt.pojo"/>


</beans>

(2)bean

?绿色的叶子表示放入组件当中!

?

?User

package com.gt.pojo;

import org.springframework.stereotype.Component;

//@Component 等价于<bean id="user" class="com.gt.pojo.User"
//@Component 组件

@Component
public class User {

    public String name = "山姆";
}

MyTest

import com.gt.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //getBean括号里面的东西就是默认类的小写
        User user = context.getBean("user",User.class);
        System.out.println(user.name);
    }
}

?

(3)属性如何注入

  • @Component 等价于<bean id="user" class="com.gt.pojo.User"
  • @Component 就是组件
  • @Value("shanmu2") 相当于在beans.xml中<property name="name" value="shanmu2"/>
    ?

User

package com.gt.pojo;

        import org.springframework.beans.factory.annotation.Value;
        import org.springframework.stereotype.Component;

//@Component 等价于<bean id="user" class="com.gt.pojo.User"
//@Component 组件

@Component
public class User {

    //@Value("shanmu2") 相当于在beans.xml中<property name="name" value="shanmu2"/>

    public String name;
    
    @Value("shanmu2")
    public void setName(String name) {
        this.name = name;
    }
}

?

?扩展(Web):

1、衍生的注解

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

  • dao【@Repository】

  • service【@Service】

  • controller【@Controller】

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

?

2、自动装配

  • @Autowired:自动装配通过类型。名字
  • @Qualifier:如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value='xxx')
  • @Resource:自动装配通过名字。类型
  • @Component 等价于<bean id="user" class="com.gt.pojo.User"/>
  • @Scope("prototype") 这个等价于作用域
  • @Value("山姆02")? * 相当于?<bean id="user" class="com.gt.pojo.User"><property name="name" value="山姆02"/>?</bean>

3、作用域

/**
 * @Component 等价于<bean id="user" class="com.gt.pojo.User"/>
 *
 */
@Component
// @Scope("prototype") 这个等价于作用域
@Scope("prototype") 
public class User {
    /**
     * 相当于
     *     <bean id="user" class="com.gt.pojo.User">
     *         <property name="name" value="山姆02"/>
     *     </bean>
     */
//    @Value("山姆02")
    public String name;


    @Value("shanmu02")
    public void setName(String name) {
        this.name = name;
    }
}

小结

xml与注解:

  • xml更加万能,适用于任何场合,维护简单方便

  • 注解不是自己的类使用不了,维护相对复杂

xml与注解最佳实践:

  • xml用来管理bean

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

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

    <context:annotation-config/>

    <!--
      指定要扫描的包,这个包下的注解就会生效
      -->
    <context:component-scan base-package="com.gt"/>

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-04 00:56:31  更:2022-09-04 01:01:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:21:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码