?? action.java
字號(hào):
package com.javaeedev.lightweight.mvc;
/**
* Prototype Action that execute for handle http request. NOTE that subclass
* should designed as "Use and throw".
* @finishing www.codefans.net
* @author Xuefeng
*/
public interface Action {
/**
* Return a ModelAndView object for render, or null if no need to render.
*
* @return A ModelAndView object, or null.
* @throws Exception If any exception is thrown.
*/
ModelAndView execute() throws Exception;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -