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

📄 action.java

📁 一个轻量级的MVC框架实例
💻 JAVA
字号:
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;

}

⌨️ 快捷键说明

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