Spring案例打印机的实现过程详解

作者:关耳er 时间:2023-12-02 12:28:47 

这篇文章主要介绍了Spring案例打印机的实现过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

目录:

Spring案例打印机的实现过程详解

1.applicationContext.xml配置文件


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans.xsd">
 <!--注入bean
   id相当于当前bean唯一标识
   class是bean 的全路径
   property注入bean中的属性     必须封装
 -->
 <!--注入墨盒-->
 <bean id="colorInk" class="cn.spring.print.ink.ColorInk"></bean>
 <bean id="blackWhiteInk" class="cn.spring.print.ink.BlackWhiteInk"></bean>
 <!--注入纸张-->
 <bean id="a4Paper" class="cn.spring.print.paper.A4Paper"></bean>
 <bean id="b5Paper" class="cn.spring.print.paper.B5Paper"></bean>
 <!--打印机-->
 <bean id="printer" class="cn.spring.print.printer.Printer">
   <!--将墨盒纸张组合起来-->
   <property name="paper" ref="b5Paper"></property>
   <property name="ink" ref="colorInk"></property>
 </bean>
</beans>

2.墨盒接口Ink

Spring案例打印机的实现过程详解

3.黑白墨盒实现类BlackWhiteInk

Spring案例打印机的实现过程详解

4.彩色墨盒实现类ColorInk

Spring案例打印机的实现过程详解

5.纸张接口Paper

Spring案例打印机的实现过程详解

6. A4纸张实现类 A4Paper

Spring案例打印机的实现过程详解

7. B5纸张实现类B5Paper

Spring案例打印机的实现过程详解

8. 打印机类 Printer

Spring案例打印机的实现过程详解

9. 测试类PrintTest

Spring案例打印机的实现过程详解

来源:https://www.cnblogs.com/Zzzzn/p/11731519.html

标签:spring,案例,打印机
0
投稿

猜你喜欢

  • Spring中使用atomikos+druid实现经典分布式事务的方法

    2023-07-14 00:46:17
  • C#实现自定义打印文字和图片的示例代码

    2021-05-30 02:35:20
  • 深入浅析Java 抽象类和接口

    2022-12-17 19:19:27
  • 浅谈Mybatis获取参数值的方式

    2022-09-22 07:56:21
  • Spring MVC基于注解的使用之JSON数据处理的方法

    2022-06-02 14:02:43
  • 深入理解Javascript中的this关键字

    2022-03-08 16:52:25
  • IDEA安装后找不到.vmoptions文件的问题及解决

    2023-10-05 22:43:44
  • Java static关键字详细解析

    2021-08-12 00:40:23
  • javaweb项目如何实现手机短信登录

    2021-05-27 03:09:25
  • Android开发使用Messenger及Handler进行通信的方法示例

    2022-02-23 23:35:22
  • Java中的"goto"语句妙用

    2023-10-10 03:54:32
  • 解决@CachePut设置的key值无法与@CacheValue的值匹配问题

    2021-09-10 13:28:49
  • SpringCloud学习笔记之OpenFeign进行服务调用

    2021-05-25 12:32:58
  • Java web项目中的强制登录功能实现代码

    2023-09-14 08:26:18
  • Java设计模式之java组合模式详解

    2022-05-02 07:52:38
  • Android使用GridView实现横向滚动效果

    2022-01-29 13:32:16
  • Kryo框架使用方法代码示例

    2021-05-30 15:46:05
  • Android 判断SIM卡是中国移动\\中国联通\\中国电信(移动运营商)

    2023-01-22 04:20:27
  • Kotlin协程到底是如何切换线程的

    2022-03-03 13:52:39
  • 关于Spring Boot内存泄露排查的记录

    2023-06-27 18:46:19
  • asp之家 软件编程 m.aspxhome.com