📄 actionmapping.java
字号:
package com.xaccp.aj3q8073.controller;
/**
* 包装配置信息中的action 也就是类信息
*
* @author Administrator
*
*/
public class ActionMapping {
String path;
Object action;
String methodName;
public Object getAction() {
return action;
}
public void setAction(Object action) {
this.action = action;
}
public String getMethodName() {
return methodName;
}
public void setMethodName(String methodName) {
this.methodName = methodName;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -