Spring课堂练习5

2023-10-04 23:10
文章标签 spring 课堂练习

本文主要是介绍Spring课堂练习5,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

课堂练习
1、增加拯救少女任务类与拯救少女骑士类
在这里插入图片描述

package net.lj.spring.lesson05.aop_xml;import org.springframework.stereotype.Component;@Component
public class RescueDamselQuest {public void embark() {System.out.println("执行救美任务。");}
}

在这里插入图片描述
在这里插入图片描述

package net.lj.spring.lesson05.aop_xml;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;@Component
public class DamselRescuingKnight {@Autowiredprivate RescueDamselQuest rescueDamselQuest;public void embarkOnQuest() {rescueDamselQuest.embark();}
}

在测试代码中创建testDamselRescuingKnight()方法。在这里插入图片描述

package net.lj.spring.lesson05.aop_xml;import net.lhf.spring.lesson05.aop_xml.BraveKnight;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;/**public class TestKnight {private ClassPathXmlApplicationContext context;@Beforepublic void init() {// 基于Spring配置文件创建应用容器context = new ClassPathXmlApplicationContext("aop_xml/spring-config.xml");}@Testpublic void testBraveKnight() {// 根据名称从应用容器里获取勇敢骑士对象BraveKnight braveKnight = (BraveKnight) context.getBean("Mike");// 勇敢骑士执行任务braveKnight.embarkOnQuest();}@Testpublic void  testDamselRescuingKnight(){//根据救美骑士类从应用容器里获取救美骑士对象net.lhf.spring.lesson05.aop_xml.DamselRescuingKnightdamselRescuingKnight =context.getBean(DamselRescuingKnight.class);damselRescuingKnight.embarkOnQuest();}@Afterpublic void destroy() {// 关闭应用容器context.close();}
}

运行testDamselRescuingKnight(),结果:
在这里插入图片描述
创建aop_annotation子包,把aop_xml子包中的文件复制到aop_annotation子包中
在这里插入图片描述
在aop_annotation子包创建注解接口-Action
在这里插入图片描述

package net.lj.spring.lesson05.aop_annotation;import java.lang.annotation.*;@Target(ElementType.METHOD)//拦截目标  -方法
@Retention(RetentionPolicy.RUNTIME) //保持策略 -运行时
@Documented//注释文档
public @interface Action {String name();
}

创建游吟诗人类MinstreAspect

在这里插入图片描述

package net.lj.spring.lesson05.aop_annotation;import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;@Aspect
@Component//交给Spring容器管理
public class MinstrelAspect {//注解声明切点@Pointcut("execution(* net.lhf.spring.lesson05..*.embarkOnQuest(..))")public void embark() {}//注解声明前置通知@Before("embark()")public void singBeforeQuest(JoinPoint joinPoint){System.out.println("啦啦啦,骑士出发啦!");}//注解声明后置通知@After("embark()")public void singAfterQuest(JoinPoint joinPoint){System.out.println("真棒啊,骑士完成了任务!");}
}

在aop_annotation子包里创建Spring配置类 - AopConfig在这里插入图片描述

package net.lj.spring.lesson05.aop_annotation;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;@Configuration // 标明是Spring配置类
@ComponentScan("net.lhf.spring.lesson05.aop_annotation") // 组件扫描
@EnableAspectJAutoProxy // 开启Spring对ApectJ的支持
public class AopConfig {
}

在aop_annotation子包里创建测试类 - TestKnight
在这里插入图片描述
在这里插入图片描述

package net.lj.spring.lesson05.aop_annotation;import net.lhf.spring.lesson05.aop_xml.BraveKnight;
import net.lhf.spring.lesson05.aop_xml.DamselRescuingKnight;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestKnight {private ClassPathXmlApplicationContext context;@Beforepublic void init() {// 基于Spring配置文件创建应用容器context = new ClassPathXmlApplicationContext("aop_xml/spring-config.xml");}@Testpublic void testBraveKnight() {// 根据名称从应用容器里获取勇敢骑士对象net.lhf.spring.lesson05.aop_xml.BraveKnight braveKnight = (BraveKnight) context.getBean("Mike");// 勇敢骑士执行任务braveKnight.embarkOnQuest();}@Testpublic void  testDamselRescuingKnight(){//根据救美骑士类从应用容器里获取救美骑士对象net.lhf.spring.lesson05.aop_xml.DamselRescuingKnightdamselRescuingKnight =context.getBean(DamselRescuingKnight.class);damselRescuingKnight.embarkOnQuest();}@Afterpublic void destroy() {// 关闭应用容器context.close();}
}

运行测试方法testBraveKnight(),查看效果
在这里插入图片描述
在按照老师来做的时候,代码出现错误,获取不到Mike
在这里插入图片描述
在这里插入图片描述

package net.lj.spring.lesson05.aop_annotation;import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class TestKnight {private AnnotationConfigApplicationContext context;@Beforepublic void init() {// 基于Spring配置类创建应用容器context = new AnnotationConfigApplicationContext(AopConfig.class);}@Testpublic void testBraveKnight() {// 根据名称从应用容器里获取勇敢骑士对象BraveKnight braveKnight = (BraveKnight) context.getBean("Mike");// 勇敢骑士执行任务braveKnight.embarkOnQuest();}@Testpublic void testDamselRescuingKnight(){//根据名称从应用容器里获取救美骑士对象DamselRescuingKnight knight = (DamselRescuingKnight) context.getBean("damselRescuingKnight");//救美骑士执行任务knight.embarkOnQuest();}@Afterpublic void destroy() {// 关闭应用容器context.close();}
}

在测试程序里增加对拯救少女骑士的测试方法 - testDamselRescuingKnight(),运行结果
在这里插入图片描述

这篇关于Spring课堂练习5的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/2908

相关文章

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.