亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

JAVA認證

Java認證考試知識點:Spring獲取Bean四種方法

時間:2024-07-05 01:46:09 JAVA認證 我要投稿
  • 相關(guān)推薦

Java認證考試知識點:Spring獲取Bean四種方法

  下面YJBYS小編為大家整理了Spring獲取Bean四種方法,希望對你有所幫助。更多Java認證考試信息,盡在應(yīng)屆畢業(yè)生培訓(xùn)網(wǎng)!

Java認證考試知識點:Spring獲取Bean四種方法

  方法一:通過Spring提供的工具類獲取ApplicationContext對象

  代碼:

  import org.springframework.web.context.support.WebApplicationContextUtils;

  ApplicationContext ac1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc)

  ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc)

  ac1.getBean(“beanId”);

  ac2.getBean(“beanId”);

  說明:

  這種方式適合于采用Spring框架的B/S系統(tǒng),通過ServletContext對象獲取ApplicationContext對象,然后在通過它獲取需要的類實例。上面兩個工具方式的區(qū)別是,前者在獲取失敗時拋出異常,后者返回null.

  其中 servletContext sc 可以具體 換成 servlet.getServletContext()或者 this.getServletContext() 或者 request.getSession()。getServletContext();

  另外,由于spring是注入的對象放在ServletContext中的,所以可以直接在ServletContext取出WebApplicationContext 對象:

  WebApplicationContext webApplicationContext = (WebApplicationContext) servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);

  方法二:在初始化時保存ApplicationContext對象

  代碼:

  ApplicationContext ac = new FileSystemXmlApplicationContex(“applicationContext.xml”);

  ac.getBean(“beanId”);

  說明:

  這種方式適用于采用Spring框架的獨立應(yīng)用程序,需要程序通過配置文件手工初始化Spring的情況。

  方法三:繼承自抽象類ApplicationObjectSupport

  說明:

  抽象類ApplicationObjectSupport提供getApplicationContext()方法,可以方便的獲取到ApplicationContext.Spring初始化時,會通過該抽象類的setApplicationContext(ApplicationContext context)方法將ApplicationContext 對象注入。

  方法四:繼承自抽象類WebApplicationObjectSupport

  說明:

  類似上面方法,調(diào)用getWebApplicationContext()獲取WebApplicationContext

  方法五:實現(xiàn)接口ApplicationContextAware

  說明:

  實現(xiàn)該接口的setApplicationContext(ApplicationContext context)方法,并保存ApplicationContext 對象。Spring初始化時,會通過該方法將ApplicationContext 對象注入。

  以上方法適合不同的情況,請根據(jù)具體情況選用相應(yīng)的方法。

  這里值得提一點的是,系統(tǒng)中用到上述方法的類實際上就于Spring框架緊密耦合在一起了,因為這些類是知道它們是運行在Spring框架上的,因此,系統(tǒng)中,應(yīng)該盡量的減少這類應(yīng)用,使系統(tǒng)盡可能的獨立于當(dāng)前運行環(huán)境,盡量通過DI的方式獲取需要的服務(wù)提供者。

  然后在Action中編寫如下代碼得到Context,(我是覆蓋了Struts Action的setServlet方法,也許還有更好的方法)。

  public void setServlet(ActionServlet servlet){

  super.setServlet(servlet);

  ServletContext servletContext = servlet.getServletContext();

  WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);

  // get yours beans

  }

  我需要在spring的bean中直接獲取,這下可和我們常規(guī)的操作有些不同,因為spring的bean都是pojo的。根本見不著servletconfig和servletcontext的影子。

  這里我需要指出spring給我們提供了兩個接口:org.springframework.web.context.ServletContextAware和

  org.springframework.web.context.ServletConfigAware.我們可以讓我們的bean實現(xiàn)上邊的任何一個接口就能獲取到servletContext了 .

  代碼如下:

  public class DicBean implements ServletContextAware{

  private ServletContext servletContext;

  public void setServletContext(ServletContext sc) {

  this.servletContext=sc;

  System.out.println(“項目的絕對路徑為:”+servletContext.getRealPath(“/”));

  }

  }

【Java認證考試知識點:Spring獲取Bean四種方法】相關(guān)文章:

Java類如何獲取Spring的bean08-06

Java獲取當(dāng)前的系統(tǒng)時間的方法11-03

Sun java認證考試答案10-23

java認證考試培訓(xùn)內(nèi)容08-21

JAVA考試認證經(jīng)驗分享09-20

Java認證考試的目的是什么09-19

2016年Java認證考試題07-08

Sun認證Java開發(fā)員考試介紹06-25

ibm認證考試知識點07-07

Java怎么獲取MAC地址09-19