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

📄 springproxyaction.java

📁 struts,spring,hibernate三个框架整合的简单例子
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.yourcompany.struts.action;

import java.util.*;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yourcompany.struts.form.RegisterForm;


public class SpringProxyAction extends Action {
//	private Map map = new HashMap();
	

	
//	{
//		map.put("/ssh/register.do", new RegisterAction());
//	}

	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {

		
		String path = request.getRequestURI();
	
		System.out.println(path);
		
		ApplicationContext ctx = new 
		ClassPathXmlApplicationContext(
				"applicationContext.xml");
		
//		Action action = (Action)map.get(path);
		Action action = (Action)ctx.getBean(path);
		
		if(action != null) {
			try {
				return action.execute(mapping, form, 
						request, response);
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		
		return mapping.findForward("failed");
	}
}

⌨️ 快捷键说明

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