⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseaction.java

📁 SSH经典练习
💻 JAVA
字号:
package com.ghy.action;

import javax.servlet.ServletContext;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionServlet;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

import com.ghy.service.CustomerService;


public class BaseAction extends Action{
	private WebApplicationContext wac;
private  CustomerService customerservice;
	
	
	public void setServlet(ActionServlet actionServlet)
	{
		super.setServlet(actionServlet);
		if(actionServlet!=null)
		{
			ServletContext servletContext = actionServlet.getServletContext();
		 wac =	WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
		   this.customerservice=(CustomerService)wac.getBean("customerservice");
		}
		
	}
	protected WebApplicationContext getWebApplicationContext() {
	    return wac;
	  }

	public CustomerService getCustomerservice() {
		return customerservice;
	}

	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -