91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring中bean基礎知識的示例分析

發布時間:2021-09-15 11:08:24 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“Spring中bean基礎知識的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Spring中bean基礎知識的示例分析”這篇文章吧。

Bean:

  • 在Spring技術中是基于組件的

  • 最基本了是最常用的單元

  • 其實實例保存在Spring的容器當中

Bean通常被定義在配置文件當中,Bean實例化由Spring的Ioc容器進行管理,Bean的實例可以通過Beanfactory進行訪問,實際上大部分J2EE應用,Bean是通過ApplicationContext來訪問的,ApplicationContext是BeanFactory的子接口,功能要比BeanFactory強大許多

在前面得博客依賴注入與控制反轉中演示了應用spring實現ioc,在ApplicationContext.xml中有bean的配置,里面只是bean簡單的應用。這篇主要是進一步學習使用bean。

一、定義

<?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="DaoImpl" class="Cuiyw.Spring.Dao.DaoImpl"></bean>
<bean id="ServiceImpl" class="Cuiyw.Spring.Service.ServiceImpl" scope="singleton">
<property name="dao" ref="DaoImpl"></property>
</bean>
</beans>

上面的代碼是之前博客配置的,可以看到bean的基本構成。 <beans/>是Sring配置文件的根節點,一個<beans/>節點里面可以有多個<bean>節點。在bean中常用兩個屬性:ID,Class. ID是一唯一標識,來確定是哪個bean,可以讓其他bean中使用id引用。class用來指定是哪個class。同時還可以設置scope屬性,scope有兩種:singleton,non-singelton。singleton:單實例模式(默認,構造方法為private),整個Spring的容器中只有一個共享實例存在(singleton)。non-singelton:每次請求該bean,Spring容器都會新建立一個bean實例,然后返回給程序(request,session,prototype)。

二、創建

Bean的命名機制

id 當在Spring的窗口當中,查找某個Bean對象時,首先根據id進行查找,將其余作為Bean的默認名稱,如果ID屬性不存在,則根據Name屬性進行查找(將其中的第一個名稱作為默認的名稱),如果ID和NAME都不存在根據類的名稱進行查找。id---------->name--------------->類名。

Bean的別名:可以使用alias來為bean指定別名.

下面的配置文件還是在上面的xml基礎上修改的。這里配置了ID為ServiceImpl的bean設置了別名。我們可以使用它的name、id、alias來獲取service。

<?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="DaoImpl" class="Cuiyw.Spring.Dao.DaoImpl"></bean>
<bean id="ServiceImpl" class="Cuiyw.Spring.Service.ServiceImpl" scope="singleton" name="ServiceA">
<property name="dao" ref="DaoImpl"></property>
</bean>
<alias name="ServiceA" alias="ServiceA1"/>
</beans>
package Cuiyw.SpringAop;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import Cuiyw.Spring.IService.IService;
public class App 
{
 public static void main( String[] args )
 {
 ApplicationContext context=new ClassPathXmlApplicationContext(new String[]{"ApplicationContext.xml"});
 BeanFactory factory=context;
 IService service=(IService)factory.getBean("ServiceA1");
 service.service("Cuiyw ServiceA1"); 
 service=(IService)factory.getBean("ServiceA");
 service.service("Cuiyw ServiceA"); 
 service=(IService)factory.getBean("ServiceImpl");
 service.service("Cuiyw ServiceImpl"); 
 }
}

Spring中bean基礎知識的示例分析

三、注入

1.基本類型和string

可以使用value元素來設置,在上面的代碼基礎上稍作修改

<property name="baseProperty" value="222"></property>
package Cuiyw.Spring.Service;
import Cuiyw.Spring.IDao.IDao;
import Cuiyw.Spring.IService.IService;
public class ServiceImpl implements IService{
 private IDao dao;
 private int baseProperty;
 public IDao getDao() {
  return dao;
 }
 public void setDao(IDao dao) {
  this.dao = dao;
 }
 public void service(String name) {
  System.out.println(dao.sayHello(name)+" baseProperty:"+getBaseProperty());
 }
 public int getBaseProperty() {
  return baseProperty;
 }
 public void setBaseProperty(int baseProperty) {
  this.baseProperty = baseProperty;
 }
}

Spring中bean基礎知識的示例分析

對于string類型,XML解析器以String類型解析出數據,如果屬性不是String類型,屬性值會通過PropertyEditors轉換為其他類型,比如時間類型.

2.注入bean

上面的代碼中就注入了bean,在ServiceImpl中注入DaoImpl。可以使用ref來進行配置。

3.注入集合

常見的集合有list、map、set、property等,下面的代碼是在ServiceImpl中定義了幾個屬性,然后在上下文中通過屬性注入進去。為了測試,在DaoImpl中也增加了一個屬性s。

package Cuiyw.Spring.Dao;
import java.util.Calendar;
import Cuiyw.Spring.IDao.IDao;
public class DaoImpl implements IDao{
 public String s;
 public String getS() {
  return s;
 }
 public void setS(String s) {
  this.s = s;
 }
 public String sayHello(String name) {
  int hour=Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
  if(hour<6) return "凌晨早,"+name;
  if(hour<12)return "早上好,"+name;
  if(hour<13)return "中午好,"+name;
  if(hour<18)return "下午好,"+name;
  return "晚上好,"+name+", s="+s;   
 } 
}
package Cuiyw.Spring.Service;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import Cuiyw.Spring.IDao.IDao;
import Cuiyw.Spring.IService.IService;
public class ServiceImpl implements IService{
 private IDao dao;
 private int baseProperty;
 private List<Object> lists;
 private Set<Object> sets;
 private Map<Object, Object> maps;
 private Properties pros;
 public IDao getDao() {
  return dao;
 }
 public void setDao(IDao dao) {
  this.dao = dao;
 }
 public void service(String name) {
  System.out.println(dao.sayHello(name)+",baseProperty:"+getBaseProperty());
  for(int i=0;i<lists.size();i++)
  {
   Object obj=lists.get(i);
   System.out.println(obj.getClass().getName());
  }
  for(Object obj : sets)
  {
   System.out.println(obj.getClass().getName());
  }
  //遍歷maps中的key
  for (Object key : maps.keySet()) {
   System.out.println("Key = " + key);
  }
  //遍歷maps中的值
  for (Object value : maps.values()) {
   System.out.println("Value = " + value);
  }
   Set<String> pro=pros.stringPropertyNames();
   Iterator<String> it=pro.iterator();
   while(it.hasNext()){
    Object key=it.next();
    System.out.println(key+"----"+pros.getProperty((String) key));
    }
 }
 public int getBaseProperty() {
  return baseProperty;
 }
 public void setBaseProperty(int baseProperty) {
  this.baseProperty = baseProperty;
 }
 public List<Object> getLists() {
  return lists;
 }
 public void setLists(List<Object> lists) {
  this.lists = lists;
 }
 public Set<Object> getSets() {
  return sets;
 }
 public void setSets(Set<Object> sets) {
  this.sets = sets;
 }
 public Map<Object, Object> getMaps() {
  return maps;
 }
 public void setMaps(Map<Object, Object> maps) {
  this.maps = maps;
 }
 public Properties getPros() {
  return pros;
 }
 public void setPros(Properties pros) {
  this.pros = pros;
 }
}

主要是注入的配置,在list、map、set屬性中都是配置了一個基礎類型value=1,兩個DaoImpl類型。

<?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="DaoImpl" class="Cuiyw.Spring.Dao.DaoImpl">
 <property name="s" value="cyw"></property>
</bean>
<bean id="ServiceImpl" class="Cuiyw.Spring.Service.ServiceImpl" scope="singleton" name="ServiceA">
 <property name="dao" ref="DaoImpl"></property>
 <property name="baseProperty" value="222"></property>
 <property name="lists">
   <list>
   <value>1</value>
   <ref bean="DaoImpl" />
   <bean class="Cuiyw.Spring.Dao.DaoImpl">
    <property name="s" value="cuiywlists" />
   </bean>
  </list>
 </property>
 <property name="sets">
   <set>
   <value>1</value>
   <ref bean="DaoImpl" />
   <bean class="Cuiyw.Spring.Dao.DaoImpl">
    <property name="s" value="cuiywsets" />
   </bean>
  </set>
 </property>
 <property name="maps">
   <map>
   <entry key="key1" value="1"></entry>
   <entry key="key2" value-ref="DaoImpl"></entry>
   <entry key="key3" >
   <bean class="Cuiyw.Spring.Dao.DaoImpl">
    <property name="s" value="cuiywmaps" />
   </bean>
   </entry>
  </map>
 </property>
 <property name="pros">
  <props>
   <prop key="prokey1">prokeyA</prop>
   <prop key="prokey2">prokeyB</prop>
  </props>
 </property>
</bean>
<alias name="ServiceA" alias="ServiceA1"/>
</beans>

執行main方法可以看到屬性都注入進去了。

Spring中bean基礎知識的示例分析

4.自定義屬性編輯器

對于有一些屬性是沒法注入的,此時就需要自定義,比如上面說的日期類型。

首先是要定義一個繼承PropertyEditorSupport的類,重寫setAsText方法。

package Cuiyw.Spring.Service;
import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class CustomerProperty extends PropertyEditorSupport {
 private String format="yyyy-MM-dd";
 public String getFormat() {
  return format;
 }
 public void setFormat(String format) {
  this.format = format;
 }
 @Override
 public void setAsText(String text) throws IllegalArgumentException {
  // TODO Auto-generated method stub
  SimpleDateFormat sdf=new SimpleDateFormat(format);
  //super.setAsText(text);
  try {
   //轉換對象,能過setValue方法重新賦值
   this.setValue(sdf.parse(text));
  } catch (ParseException e) {
   e.printStackTrace();
  }
 }
}

然后在配置文件配置這個類

<bean id="customEditorConfigurer" class="org.springframework.beans.factory.config.CustomEditorConfigurer">
 <property name="customEditors">
 <map>
 <entry key="java.util.Date" value="Cuiyw.Spring.Service.CustomerProperty"/>
 </map>
 </property>
</bean>

這里還是在ServiceImpl中增加了一個java.util.Date類型的date屬性。并在配置文件注入值。

<property name="date" value="2017-12-10"/>

以上是“Spring中bean基礎知識的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

农安县| 惠水县| 丹寨县| 额敏县| 承德市| 黄大仙区| 阿勒泰市| 吉隆县| 宜丰县| 达拉特旗| 潞西市| 新邵县| 泰来县| 富源县| 浦东新区| 广元市| 宁夏| 新乐市| 沂水县| 萨嘎县| 天峻县| 仙居县| 彭泽县| 大埔县| 曲松县| 大渡口区| 山阳县| 孙吴县| 青浦区| 新营市| 普兰县| 镇平县| 临江市| 涿州市| 房山区| 涟源市| 巴东县| 涞源县| 丹凤县| 长宁区| 罗城|