MVC

    • Controller : 控制器
    • Action :请求的基本单位
    • Interceptor : 拦截器
    • FixedInterceptor :永久拦截器
    • Render :渲染器
    • Session
    • Cookie
    • Jwt : Json Web Token
    • 安全

    JFinal 的相关文档: https://www.jfinal.com/doc/3-1

    另外,JbootController 扩展了 JFinal 的 Controller 类,增加了 Jwt、FlashMessage 和 其他一些实用的方法。

    在 Controller 之中定义的 方法称为 Action。Action 是请求的最小单位。Action 方法必须在 Controller 中定义,且必须是 可见性。

    以上代码中定义了两个Action,分别是 :、。