程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP 獲取Spring 注入對象示例,jspspring

JSP 獲取Spring 注入對象示例,jspspring

編輯:關於JSP

JSP 獲取Spring 注入對象示例,jspspring


<%@ page import="org.springframework.web.context.support.WebApplicationContextUtils"%>
<%@ page import="org.springframework.context.ApplicationContext"%>

ServletContext sc = this.getServletConfig().getServletContext();
ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(sc);

要獲取的對象 serv = (要獲取的對象) ac2.getBean("spring配置文件中的id");


spring25 使用注解的時jsp怎獲得bean對象

WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext((request).getSession().getServletContext());
AdvertiseService advertiseService = (AdvertiseService)ctx.getBean("advertiseService");

這個是在容器裡調 一個service的
 

jsp中怎獲取 使用spring標注聲明的service 服務對象

你把這個方法寫哪裡了?發個log原句
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved