MVC(二)

通过XML对自定义mvc框架进行增强

先导入包
在这里插入图片描述

再导入工具类

ActionModel
用来描述action标签

package com.huangwe.framework;

import java.io.Serializable;

import java.util.HashMap;
import java.util.Map;

/**
 * 用来描述action标签
 * @author Administrator
 *
 */
public class ActionModel implements Serializable{

	private static final long serialVersionUID = 6145949994701469663L;
	
	private Map<String, ForwardModel> forwardModels = new HashMap<String, ForwardModel>();
	
	private String path;
	
	private String type;
	
	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public void put(ForwardModel forwardModel){
		forwardModels.put(forwardModel.getName(), forwardModel);
	}
	
	public ForwardModel get(String name){
		return forwardModels.get(name);
	}
}

ConfigModel
用来描述config标签

package com.huangwe.framework;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

/**
 * 用来描述config标签
 * @author Administrator
 *
 */
public class ConfigModel implements Serializable{

	private static final long serialVersionUID = -3096531718399027789L;
	
	private Map<String, ActionModel> actionModels = new HashMap<String, ActionModel>();
	
	public void put(ActionModel actionModel){
		actionModels.put(actionModel.getPath(), actionModel);
	}
	
	public ActionModel get(String name){
		return actionModels.get(name);
	}
	
}

ConfigModelFactory

package com.huangwe.framework;

import java.io.InputStream;
import java.util.List;

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

public class ConfigModelFactory {
	
	private ConfigModelFactory() {

	}

	private static ConfigModel configModel = null;

	public static ConfigModel newInstance() throws Exception {
		return newInstance("mvc.xml");
	}

	/**
	 * 
	 * 
	 * @param path
	 * @return
	 * @throws Exception
	 */
	public static ConfigModel newInstance(String path) throws Exception {
		if (null != configModel) {
			return configModel;
		}

		ConfigModel configModel = new ConfigModel();
		InputStream is = ConfigModelFactory.class.getResourceAsStream(path);
		SAXReader saxReader = new SAXReader();
		Document doc = saxReader.read(is);
		List<Element> actionEleList = doc.selectNodes("/config/action");
		ActionModel actionModel = null;
		ForwardModel forwardModel = null;
		for (Element actionEle : actionEleList) {
			 actionModel = new ActionModel();
			actionModel.setPath(actionEle.attributeValue("path"));
			actionModel.setType(actionEle.attributeValue("type"));
			List<Element> forwordEleList = actionEle.selectNodes("forward");
			for (Element forwordEle : forwordEleList) {
				forwardModel = new ForwardModel();
				forwardModel.setName(forwordEle.attributeValue("name"));
				forwardModel.setPath(forwordEle.attributeValue("path"));
				forwardModel.setRedirect(forwordEle.attributeValue("redirect"));
				actionModel.put(forwardModel);
			}

			configModel.put(actionModel);
		}

		return configModel;
	}
	
	public static void main(String[] args) {
		try {
			ConfigModel configModel = ConfigModelFactory.newInstance();
			ActionModel actionModel = configModel.get("/loginAction");
			ForwardModel forwardModel = actionModel.get("failed");
			System.out.println(actionModel.getType());
			System.out.println(forwardModel.getPath());
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

ForwardModel
用来描述forward标签

package com.huangwe.framework;

import java.io.Serializable;

/**
 * 用来描述forward标签
 * @author Administrator
 *
 */
public class ForwardModel implements Serializable {

	private static final long serialVersionUID = -8587690587750366756L;

	private String name;
	private String path;
	private String redirect;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public String getRedirect() {
		return redirect;
	}

	public void setRedirect(String redirect) {
		this.redirect = redirect;
	}

}

将Action的信息配置到xml(反射实例化)
mvc.xml

<?xml version="1.0" encoding="UTF-8"?>

<config>
	<action path="/cal" type="com.huangwe.web.CalAction">
		<forward name="res" path="/res.jsp" redirect="false"  />
	</action>
</config>

DispatcherServlet
中央控制器
作用:接受请求,通过请求寻找处理请求的对应的自控器

解决了在框架代码中去改动,以便于完成客户需求,这个是不合理的

通过结果码控制页面的跳转
把子控制器的跳转全部写到主控制器中

package com.huangwe.framework;

import java.io.IOException;


import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.beanutils.BeanUtils;


public class DispatcherServlet extends HttpServlet{

	/**
	 * 中央控制器   DispatcherServlet
	 * 作用:接受请求,通过请求寻找处理请求的对应的自控器
	 * 
	 */
	
	private static final long serialVersionUID = 121524106953284527L;
//  所有的子控制器都应该配置到configModel
	private ConfigModel configModel;
	public void init() {
		try {
			String xmlPath=this.getInitParameter("xmlPath");
			if(xmlPath==null || "".equals(xmlPath)) {
//			   这时configModel对象中有了子控制器所有的信息
				configModel=ConfigModelFactory.newInstance();
			}else {
				configModel=ConfigModelFactory.newInstance(xmlPath);
			}

		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
	@Override
	protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doPost(req, resp);
	}
	@Override
	protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		init();
		String url=req.getRequestURI();
		url=url.substring(url.lastIndexOf("/"), url.lastIndexOf("."));
		ActionModel actionModel = configModel.get(url);
		if(actionModel == null) {
			throw new RuntimeException("你没有配置action标签");
		}
		try {
			Action action =(Action)Class.forName(actionModel.getType()).newInstance();
			if(action instanceof ModelDrivern) {
//				向上转型
				ModelDrivern modelDrivern=(ModelDrivern) action;
//				此时model的所有属性值是null;
				Object model = modelDrivern.getModel();
				BeanUtils.populate(model, req.getParameterMap());
				
//				我们可以将req.getParameterMap()的值通过反射的方式将其塞入model实例中
//				Map<String, String[]> parameterMap = req.getParameterMap();
//				Set<Entry<String, String[]>> entrySet = parameterMap.entrySet();
//				Class<? extends Object> clz = model.getClass();
//				for (Entry<String, String[]> entry : entrySet) {
//				Field field = clz.getDeclaredField(entry.getKey());
//				field.setAccessible(true);
//				field.set(model, entry.getValue());
//				}
			}
//		子控制器的返回码
		String code = action.execute(req, resp);
//	             根据名字拿到要跳转的界面
	    ForwardModel forwardModel = actionModel.get(code);
		    if(forwardModel!=null) {
	//	    	拿到跳转页面的路径
		    	String jspPath = forwardModel.getPath();
		    	if("false".equals(forwardModel.getRedirect())) {
	//	    		做转发的处理
		    		req.getRequestDispatcher(jspPath).forward(req, resp);
		    	}else {
	//	    		写重定向时必须加上路径名
		    		resp.sendRedirect(req.getContextPath()+jspPath);
		    	}
		    }
		} catch (InstantiationException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (SecurityException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (InvocationTargetException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

实体类Cal

package com.huangwe.entity;

public class Cal {

	private int num1;
	private int num2;
	public int getNum1() {
		return num1;
	}
	public void setNum1(int num1) {
		this.num1 = num1;
	}
	public int getNum2() {
		return num2;
	}
	public void setNum2(int num2) {
		this.num2 = num2;
	}
	public Cal(int num1, int num2) {
		super();
		this.num1 = num1;
		this.num2 = num2;
	}
	public Cal() {
		super();
	}
	
}

Action 子控制器
转门用来处理业务逻辑的

package com.huangwe.framework;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * 子控制器
 * 转门用来处理业务逻辑的
 * @author dell
 *
 */
public interface Action {
	
	String execute(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException;

}

ActionSupport 增强版的子控制器
将一组相关的操作放到一个Action中(反射调用方法)
将子控制器给增强,使子控制器能够将一组相关的操作放到一个Action(CalAction)中

package com.huangwe.framework;

import java.io.IOException;


import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * 增强版的子控制器
 * 原来的子控制器只能一个用户请求
 * 有时候,用户是多个,但是操作同一张表,那么原有的子控制器代码反锁
 * 增强版的作用
 * 将一组相关的操作放到一个action中
 * @author dell
 *
 */

public class ActionSupport implements Action {

	@Override
	public String execute(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		String methodName=req.getParameter("methodName");
		String code=null;
//		this在这里指的是子控制器它的一个类实例
		try {
			Method m = this.getClass().getDeclaredMethod(methodName, HttpServletRequest.class,HttpServletResponse.class);
		    m.setAccessible(true);
			code= (String)m.invoke(this, req,resp);
		} catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return code;
	}
}

ModelDrivern
模型驱动接口

package com.huangwe.framework;

/**
 * 模型驱动接口
 * 作用是将jsp所有专递过来的参数以及参数值都自动封装到浏览器所要操作的实体类中
 * @author dell
 *
 */

public interface ModelDrivern<T> {
	T getModel();
}

CalAction

package com.huangwe.web;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.huangwe.entity.Cal;
import com.huangwe.framework.ActionSupport;
import com.huangwe.framework.ModelDrivern;

public class CalAction extends ActionSupport implements ModelDrivern<Cal>{
	
	private Cal cal=new Cal();
	
//	相加
	public String add(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		req.setAttribute("res",cal.getNum1()+cal.getNum2());
		return "res";
	}
	
//	减
	public String del(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		req.setAttribute("res",cal.getNum1()-cal.getNum2());
		return "res";
	}
	
//	乘
	public String div(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		req.setAttribute("res",cal.getNum1()/cal.getNum2());
		return "res";
	}
	
//	除
	public String mul(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		// TODO Auto-generated method stub
		req.setAttribute("res",cal.getNum1()*cal.getNum2());
		return "res";
	}
	
	
	@Override
	public Cal getModel() {
		// TODO Auto-generated method stub
		return cal;
	}
}

web.xml
使得框架的配置文件可变:
给xml中配置主控制器提供一个参数,这样就能通过改xml来获取不同位置下的xml,
只需要改变xml,在主控制器里获取到xml里面的参数,然后调用一个有参的建模方法来实现,这样我们只需要改xml里面的param-value而对不同名字和不同位置的配置文件进行使用;

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>huangwen.mvc</display-name>
  <servlet>
  	<servlet-name>dispatcherServlet</servlet-name>
  	<servlet-class>com.huangwe.framework.DispatcherServlet</servlet-class>
  	<init-param>
  		<param-name>xmlPath</param-name>
  		<param-value>mvc.xml</param-value>
  	</init-param>
  </servlet>
  
  <servlet-mapping>
  	<servlet-name>dispatcherServlet</servlet-name>
  	<url-pattern>*.action</url-pattern>
  </servlet-mapping>
</web-app>

cal.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<script type="text/javascript">
	function doSub(num) {
		if(num==1){
			calForm.action="${pageContext.request.contextPath}/cal.action?methodName=add";
		}else if(num==2){
			calForm.action="${pageContext.request.contextPath}/cal.action?methodName=del";
		}else if(num==3){
			calForm.action="${pageContext.request.contextPath}/cal.action?methodName=mul";
		}else if(num==4){
			calForm.action="${pageContext.request.contextPath}/cal.action?methodName=div";
		}
		calForm.submit();
	}
</script>
<body>
	<form name="calForm" action="" method="post">
		num1:<input type="text" name="num1"><br>
		num2:<input type="text" name="num2"><br>
		<button onclick="doSub(1)">+</button>
		<button onclick="doSub(2)">-</button>
		<button onclick="doSub(3)">*</button>
		<button onclick="doSub(4)">/</button>
	</form>
</body

运行结果
在这里插入图片描述
在这里插入图片描述

要在 ASP.NET MVC 应用程序中实现级域名的功能,需要进行以下步骤: 1. 将所有请求重定向到统一的控制器和操作方法。可以使用 ASP.NET MVC 中的 Route 属性或全局过滤器来实现。 2. 在重定向到控制器和操作方法后,可以解析请求的 URL 来提取级域名。可以使用 Request.Url.Host 属性获取主机名,然后解析出级域名。 3. 根据级域名调用相应的业务逻辑或加载相应的视图。 以下是一个示例代码,实现了在 ASP.NET MVC 应用程序中使用级域名: ```csharp public class SubdomainFilter : IActionFilter { public void OnActionExecuting(ActionExecutingContext filterContext) { string[] hostParts = filterContext.HttpContext.Request.Url.Host.Split('.'); if (hostParts.Length > 2) { string subdomain = hostParts[0]; // 根据级域名调用相应的业务逻辑或加载相应的视图 // ... filterContext.Result = new RedirectResult("/Home/Index"); } } public void OnActionExecuted(ActionExecutedContext filterContext) { // do nothing } } public class HomeController : Controller { [Route("Index")] [SubdomainFilter] public ActionResult Index() { return View(); } } ``` 在上面的示例中,我们创建了一个名为 `SubdomainFilter` 的全局过滤器,该过滤器用于解析请求的 URL 并提取级域名。如果存在级域名,则根据级域名调用相应的业务逻辑或加载相应的视图。在 `HomeController` 中的 `Index` 方法上,使用了 `Route` 属性来指定路由规则,并且将 `SubdomainFilter` 过滤器应用到该方法中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值