有了Action配置之后,我们需要定义一个与配置匹配的javabean。主要是方便数据保存。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| package com.snails.framework.action;
import java.util.HashMap; import java.util.Map;
public class ActionMapping {
private String actionName; private String actionClassName;
private Map<String, Map<String, String>> resultMap = new HashMap<String, Map<String, String>>();
public Map<String, String> getResult(String resultName) { return resultMap.get(resultName); }
public void setResultMap(String resultNameAttr, Map<String, String> result) { this.resultMap.put(resultNameAttr, result); }
public String getActionName() { return actionName; } public void setActionName(String actionName) { this.actionName = actionName; } public String getActionClassName() { return actionClassName; } public void setActionClassName(String actionClassName) { this.actionClassName = actionClassName; }
}
|
项目完整代码请看MyMVC,欢迎fork学习,如果你觉得对你有帮助给我点个赞吧,当然也欢迎给我提意见(email:1527254027@qq.com,chendequanroob@gmail.com)。