审查视图

src/main/java/com/tianbo/analysis/controller/ErrorController.java 398 字节
朱兆平 authored
1
package com.tianbo.analysis.controller;
朱兆平 authored
2 3 4 5 6 7 8

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class ErrorController {
朱兆平 authored
9 10
    @RequestMapping("/error404")
    public String error404(){
朱兆平 authored
11
        return "error/404";
朱兆平 authored
12 13
    }
朱兆平 authored
14 15
    @RequestMapping("/error500")
    public String error500(){
朱兆平 authored
16
        return "error/500";
朱兆平 authored
17 18 19
    }

朱兆平 authored
20
}