审查视图

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

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

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

朱兆平 authored
20
}