1.创建一个webapp的maven项目
2.导入jfinal所需要的包
3.配置web.xml文件
3.编写一个 DomeConfig 类来继承JFinalConfig
集成JFinalConfig会让我们重现6个方法,这里我们只需写 CongfigConstant 与 ConfigRoute两个
3.编写一个 HelloController 继承 Controller
4.在编写一个启动项目的类 start
再给大家看一下我的项目结构,有助于理解
启动项目 ,访问 http://localhost:99/hello (默认访问index方法 如何需要访问其他方法其路径名就要对应方法名)
访问 HelloController 中的 test 方法 我们需在 DemoConfig 类中的 ConfigRoute 配置
routes.add("/test",HelloController.class);
test为方法名,
访问路径 http://localhost:99/hello/test
注意
routes.add("/hello", HelloController.class,"test");
这句话的 test 是代表访问我们项目中 /WEB-INF/view/test 中的jsp页面的路径