真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring中怎么通過(guò)實(shí)例工廠方法創(chuàng)建Bean

這篇文章將為大家詳細(xì)講解有關(guān)Spring中怎么通過(guò)實(shí)例工廠方法創(chuàng)建Bean,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)從2013年創(chuàng)立,先為龍南等服務(wù)建站,龍南等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為龍南企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。

一 配置

                                 

二 接口

Person

package org.crazyit.app.service;public interface Person{   // 定義一個(gè)打招呼的方法   public String sayHello(String name);   // 定義一個(gè)告別的方法   public String sayGoodBye(String name);}

三 實(shí)現(xiàn)類

American

public class American implements Person{   // 實(shí)現(xiàn)Person接口必須實(shí)現(xiàn)如下兩個(gè)方法   public String sayHello(String name)   {      return name + ",Hello!";   }   public String sayGoodBye(String name)   {      return name + ",Good Bye!";   }}

Chinese

package org.crazyit.app.service.impl;import org.crazyit.app.service.*;public class Chinese implements Person{   // 實(shí)現(xiàn)Person接口必須實(shí)現(xiàn)如下兩個(gè)方法   public String sayHello(String name)   {      return name + ",您好";   }   public String sayGoodBye(String name)   {      return name + ",下次再見";   }}

四 工廠類

package org.crazyit.app.factory;import org.crazyit.app.service.*;import org.crazyit.app.service.impl.*;public class PersonFactory{  // 獲得Person實(shí)例的實(shí)例工廠方法  // ethnic參數(shù)決定返回哪個(gè)Person實(shí)現(xiàn)類的實(shí)例  public Person getPerson(String ethnic)  {    if (ethnic.equalsIgnoreCase("chin"))    {      return new Chinese();    }    else    {      return new American();    }  }}

五 測(cè)試類

package lee;import org.springframework.context.*;import org.springframework.context.support.*;import org.crazyit.app.service.*;public class SpringTest{  public static void main(String[] args)  {    ApplicationContext ctx = new      ClassPathXmlApplicationContext("beans.xml");    Person p1 = ctx.getBean("chinese"      , Person.class);    System.out.println(p1.sayHello("Mary"));    System.out.println(p1.sayGoodBye("Mary"));    Person p2 = ctx.getBean("american"      , Person.class);    System.out.println(p2.sayHello("Jack"));    System.out.println(p2.sayGoodBye("Jack"));  }}

六 測(cè)試

Mary,您好Mary,下次再見Jack,Hello!Jack,Good Bye!

關(guān)于Spring中怎么通過(guò)實(shí)例工廠方法創(chuàng)建Bean就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


網(wǎng)站題目:Spring中怎么通過(guò)實(shí)例工廠方法創(chuàng)建Bean
標(biāo)題來(lái)源:http://weahome.cn/article/gisjsi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部