Springboot 自定義多個404頁面


在Springboot中,可以通過修改配置、或者在static文件夾下添加error文件夾引入個性化的404模版。但是如果需要針對不同url地址規則,返回不同樣式的404頁面,則難以實現了。針對這個問題,可以參考如下內容。

例如有兩種類型的url:
/admin開頭的是后台管理,其他url為常規訪問,不考慮安全性的情況下,想返回兩種樣式的404頁面。

Springboot中的錯誤頁面均是由BasicErrorController控制, 繼承BasicErrorController,重寫其中方法即可實現自定義錯誤頁面。
package com.haramasu.daomin2.error;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.autoconfigure.web.ErrorProperties;
import org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController;
import org.springframework.boot.web.servlet.error.ErrorAttributes;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Collections;
import java.util.Map;

/**
 * @Auther: DingShuo
 * @Date: 2018/7/23 12:25
 * @Description:
 */
@Controller
@RequestMapping(value = "/error")
public class MyBasicErrorController extends BasicErrorController {
    Logger logger =LoggerFactory.getLogger(MyBasicErrorController.class);

    public MyBasicErrorController(ErrorAttributes errorAttributes, ErrorProperties errorProperties) {
        super(errorAttributes, errorProperties);
    }

    @Override
    public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) {
        HttpStatus status = getStatus(request);
        Map<String, Object> model = Collections.unmodifiableMap(getErrorAttributes(
                request, isIncludeStackTrace(request, MediaType.TEXT_HTML)));
        response.setStatus(status.value());
        ModelAndView modelAndView = resolveErrorView(request, response, status, model);
        if(modelAndView!=null){
            return modelAndView;
        }else {
            String path=model.get("path").toString();
            logger.debug("該地址無法訪問:"+path);
            if(path.startsWith("/admin/")){
                return new ModelAndView("error/adminError", model);
            }else {
                return new ModelAndView("error/homeError", model);
            }

        }
    }
    
}
需要注意,繼承BasicErrorController后的構造函數,會提示errorProperties的bean未被初始化。
可以在@Configration注解的類中初始化bean
package com.haramasu.daomin2.conf;

import org.springframework.boot.autoconfigure.web.ErrorProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @Auther: DingShuo
 * @Date: 2018/7/23 12:08
 * @Description:
 */
@Configuration
public class BeanConfig  {

    @Bean
    public ErrorProperties errorProperties(){
        return new ErrorProperties();
    }
}






免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM