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

📄 baseaction.java

📁 用STRUTS ,HIBERNATE, SPRING 三种框架整合做的实战项目
💻 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.book.BookServiceIfc;
import com.ghy.service.customer.CustomerServiceIfc;
import com.ghy.service.order.OrderServiceIfc;



public class BaseAction extends Action {
	private WebApplicationContext wac;
    private CustomerServiceIfc customerServiceIfc ;
    private BookServiceIfc bookServiceIfc ;
    private OrderServiceIfc orderServiceIfc;
		
		public void setServlet(ActionServlet actionServlet)
		{
			super.setServlet(actionServlet);
			if(actionServlet!=null)
			{
				ServletContext servletContext = actionServlet.getServletContext();
			 wac =	WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
			   customerServiceIfc=(CustomerServiceIfc)wac.getBean("customertransproxy");
			   bookServiceIfc=(BookServiceIfc)wac.getBean("booktransproxy");
			   orderServiceIfc = (OrderServiceIfc)wac.getBean("ordertransproxy");
			}
			
		}
		protected WebApplicationContext getWebApplicationContext() {
		    return wac;
		  }
        public CustomerServiceIfc getCustomerServiceIfc()
        {
        	return customerServiceIfc;
        }
        public BookServiceIfc getBookServiceIfc()
        {
        	return bookServiceIfc;
        }
        public OrderServiceIfc getOrderServiceIfc()
        {
        	return orderServiceIfc;
        }

}

⌨️ 快捷键说明

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