带参数方法访问失败

DemoConfig类中路由配置为:

@Override
public void configRoute(Routes me) {
// TODO Auto-generated method stub
//me.add("/hello",ZHUFEIJFinalController.class);
me.add("hello",ZHUFEIJFinalController.class);
}
控制类为:
	// 单个参数方法
	public void test1(String name){
		System.out.println("单个参数的方法");
		System.out.println(getPara());
		renderText(getPara(name));
	}


在浏览器输入 http://localhost/hello/test1/111 ,访问提示警告: 404 Action Not Found: /hello/test1/111,看到官网的访问方式就是controllerKey/method/v0-v1这种方式啊!



评论区

JFinal

2017-10-17 21:28

test1(String name) 这个 action 是带参的,需要看一下 jfinal 手册第 3.3 小节的内容,配置一个参数即可

配置好以后,直接就这个参数:
renderText(name),不需要再 getPara 了

热门反馈

扫码入社