📄 baseaction.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 + -