您好,登錄后才能下訂單哦!
這篇文章主要介紹了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
3.黑白墨盒實現類BlackWhiteInk
4.彩色墨盒實現類ColorInk
5.紙張接口Paper
6. A4紙張實現類 A4Paper
7. B5紙張實現類B5Paper
8. 打印機類 Printer
9. 測試類PrintTest
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。