在jfinal中,配置了如下一个controller,我希望当使用非POST请求/student时,直接返回一个405错误,但是现在是自己去找student.html模版了,应该如何避免呢?
@Before(POST.class) public void student(){ Student student = getBean(Student.class); renderJson(student); }