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知识库 -> SSM框架系列——注解开发day2-2 -> 正文阅读

[Java知识库]SSM框架系列——注解开发day2-2

注解开发

为什么要使用注解

为了代替繁重的spring配置bean,注解得到了广泛的使用
由于本文仅是说明注解开发,所以不会带大家看注解的实现之类的,我会在SpringBoot系列中加上注解实现原理

Spring注解常用总览

注解说明
@Component使用在类上用于实例化Bean
@Controller使用在web层类上用于实例化Bean
@Service使用在service层类上用于实例化Bean
@Repository使用在dao层类上用于实例化Bean
@Autowired使用在字段上用于根据类型依赖注入
@Qualifier结合@Autowired—起使用用于根据名称进行依赖注入
@Resource相当于@Autowired+@Qualifier,按照名称进行注入
@Value注入普通属性
@Scope标注Bean的作用范国
@PostConstruct使用在方法上标注该方法是Bean的销毁方法
@PreDestroy使用在方法上标注该方法是Bean的销毁方法

Spring扩展注解常用总览

使用上面的注解还不能全部替代xml配置文件,还需要使用注解替代的配置如下

  1. 非自定义的Bean的配置: <bean>
  2. 加载properties文件的配置:<contextproperty-placeholder>
  3. 组件扫描的配置:<context:component-scan>
  4. 引入其他文件: <import>
注解说明
@Configuration用于指定当前类是一个Spring配置类,当创建容器时会从该类上加载注解
@ComponentScan用于指定Spring在初始化容器时要扫描的包。作用和在Spring的xml配置文件中的< context:component-scan base-package=“com.itheima”/ >一样
@Bean使用在方法上,标注将该方法的返回值存储到Spring容器中
@PropertySource用于加载.properties文件中的配置
@lmport用于导入其他配置类
@Testjunit测试

注解替代

@Configuration标志核心配置类

@Configuration
public class WebConfig implements WebMvcConfigurer {}

@ComponentScan配置组件扫描

可以代替

<context:component-scan base-package="com.example"></context:component-scan>

示例代码1(注解+配置文件)

一用到注解我就兴奋了,毕竟用的炒鸡熟

目录

在这里插入图片描述

applicationContext.xml

配置文件中需要配置组件扫描位置

<!--    配置组件扫描-->
    <context:component-scan base-package="com.example"></context:component-scan>

完整配置

<?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 http://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.example"></context:component-scan>
</beans>

baseMapper

其中@Component(“baseMapper”)代替了<bean id="baseMapper" class=" com.example.mapper.BaseMapper"></bean>

package com.example.mapper;

import org.springframework.stereotype.Component;

@Component("baseMapper")
public class BaseMapper {
    public void show() {
        System.out.println("baseMapper sout");
    }
}

baseService

package com.example.service;

public interface BaseService {
    void showBaseMapper();
}

baseServiceImpl

当然你可以用@Resource代替@Autowired和 @Qualifier

package com.example.service.impl;

import com.example.mapper.BaseMapper;
import com.example.service.BaseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;

@Service(value = "baseService")
public class BaseServiceImpl implements BaseService {

    @Autowired
    @Qualifier("baseMapper")
    private BaseMapper baseMapper;

    @Override
    public void showBaseMapper() {
        baseMapper.show();
    }
}

baseController

package com.example.controller;

import com.example.service.BaseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;


public class BaseController {

    public static void main(String[] args) {
        ClassPathXmlApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
        BaseService baseService = (BaseService) app.getBean("baseService");
        baseService.showBaseMapper();
    }
}

结果

在这里插入图片描述

对应关系(重要)

看不同颜色的线大家应该可以看懂了
在这里插入图片描述

示例代码2(纯注解!我推荐这种)

这里我只列出和示例代码1不同的地方

目录

在这里插入图片描述

去除applicationContext.xml中的组件扫描

改用@ComponentScan("com.example")见下方baseConfiguration

baseConfiguration

package com.example.configuration;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("com.example")
public class BaseConfiguration {
}

baseController

加载配置类

 AnnotationConfigApplicationContext app = new AnnotationConfigApplicationContext(BaseConfiguration.class);
package com.example.controller;

import com.example.configuration.BaseConfiguration;
import com.example.service.BaseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;



public class BaseController {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext app = new AnnotationConfigApplicationContext(BaseConfiguration.class);
        BaseService baseService = (BaseService) app.getBean("baseService");
        baseService.showBaseMapper();
    }

}

结果

在这里插入图片描述

对应关系

前面的对应关系还是一样的,这里BaseConfiguration 代替示例代码1中baseController依赖配置文件的对应
在这里插入图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-04-24 09:15:04  更:2022-04-24 09:19:50 
 
开发: 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/24 2:34:10-

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