public void index() { try { this.render("index.html"); } catch (Exception e) { System.out.println(e.getMessage()); this.redirect("/error"); } }
请问:做项目时用到了自定义标签,标签中的逻辑代码抛出业务异常,但Controller中却无法捕获。请问是否正常,另外,有没有其它方式能捕获到异常???