@RequestMapping("/test")
public String view() throws ExceptionTest{
if(true){
throw new ExceptionTest();
}
return "index";
}
@RequestMapping("/test")
public String view() throws ExceptionTest{
if(true){
throw new ExceptionTest();
}
return "index";
}