@At("password/reset")
@Ok('1.html')
@Fail('2.html')
String reset(@Param("code")String code) {
//TODO 判断code是否过期 跳到不同的页面
boolean isWork=publicManager.reset(code)
if(isWork){
requestAttribute("code",code)
return null
...
}
if(isWork){
requestAttribute("code",code)
return null
...
}
}
我想通过布尔值isWork的结果不同,分别跳转到不同的页面(@Ok和@Fail中的1.html和2.html)
请问应该怎么实现?