第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

此應(yīng)用程序沒(méi)有針對(duì)/ error的顯式映射

此應(yīng)用程序沒(méi)有針對(duì)/ error的顯式映射

繁花如伊 2019-12-25 14:30:01
我用maven編寫(xiě)了教程https://spring.io/guides/gs/uploading-files/復(fù)制了我使用的所有代碼。該應(yīng)用程序可以運(yùn)行,但是出現(xiàn)錯(cuò)誤:Whitelabel Error Page此應(yīng)用程序沒(méi)有針對(duì)/ error的顯式映射,因此您將其視為后備。Tue Jun 30 17:24:02 CST 2015有一個(gè)意外錯(cuò)誤(類(lèi)型=未找到,狀態(tài)= 404)。無(wú)訊息我該如何解決?
查看完整描述

3 回答

?
飲歌長(zhǎng)嘯

TA貢獻(xiàn)1951條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以通過(guò)ErrorController在應(yīng)用程序中添加來(lái)解決此問(wèn)題。您可以讓錯(cuò)誤控制器返回所需的視圖。


我的應(yīng)用程序中的錯(cuò)誤控制器如下所示:


import org.springframework.boot.autoconfigure.web.ErrorAttributes;

import org.springframework.boot.autoconfigure.web.ErrorController;

import org.springframework.http.HttpStatus;

import org.springframework.http.ResponseEntity;

import org.springframework.stereotype.Controller;

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

import org.springframework.web.bind.annotation.ResponseBody;

import org.springframework.web.context.request.RequestAttributes;

import org.springframework.web.context.request.ServletRequestAttributes;

import org.springframework.web.servlet.ModelAndView;


import javax.servlet.http.HttpServletRequest;

import java.util.Map;


/**

 * Basic Controller which is called for unhandled errors

 */

@Controller

public class AppErrorController implements ErrorController{


    /**

     * Error Attributes in the Application

     */

    private ErrorAttributes errorAttributes;


    private final static String ERROR_PATH = "/error";


    /**

     * Controller for the Error Controller

     * @param errorAttributes

     */

    public AppErrorController(ErrorAttributes errorAttributes) {

        this.errorAttributes = errorAttributes;

    }


    /**

     * Supports the HTML Error View

     * @param request

     * @return

     */

    @RequestMapping(value = ERROR_PATH, produces = "text/html")

    public ModelAndView errorHtml(HttpServletRequest request) {

        return new ModelAndView("/errors/error", getErrorAttributes(request, false));

    }


    /**

     * Supports other formats like JSON, XML

     * @param request

     * @return

     */

    @RequestMapping(value = ERROR_PATH)

    @ResponseBody

    public ResponseEntity<Map<String, Object>> error(HttpServletRequest request) {

        Map<String, Object> body = getErrorAttributes(request, getTraceParameter(request));

        HttpStatus status = getStatus(request);

        return new ResponseEntity<Map<String, Object>>(body, status);

    }


    /**

     * Returns the path of the error page.

     *

     * @return the error path

     */

    @Override

    public String getErrorPath() {

        return ERROR_PATH;

    }



    private boolean getTraceParameter(HttpServletRequest request) {

        String parameter = request.getParameter("trace");

        if (parameter == null) {

            return false;

        }

        return !"false".equals(parameter.toLowerCase());

    }


    private Map<String, Object> getErrorAttributes(HttpServletRequest request,

                                                   boolean includeStackTrace) {

        RequestAttributes requestAttributes = new ServletRequestAttributes(request);

        return this.errorAttributes.getErrorAttributes(requestAttributes,

                includeStackTrace);

    }


    private HttpStatus getStatus(HttpServletRequest request) {

        Integer statusCode = (Integer) request

                .getAttribute("javax.servlet.error.status_code");

        if (statusCode != null) {

            try {

                return HttpStatus.valueOf(statusCode);

            }

            catch (Exception ex) {

            }

        }

        return HttpStatus.INTERNAL_SERVER_ERROR;

    }

}

上面的類(lèi)基于Springs BasicErrorController類(lèi)。


您可以ErrorController在@Configuration文件中實(shí)例化以上內(nèi)容:


 @Autowired

 private ErrorAttributes errorAttributes;


 @Bean

 public AppErrorController appErrorController(){return new AppErrorController(errorAttributes);}

您可以ErrorAttributes通過(guò)實(shí)現(xiàn)ErrorAttributes選擇覆蓋默認(rèn)值。但在大多數(shù)情況下,DefaultErrorAttributes應(yīng)該足夠。


查看完整回答
反對(duì) 回復(fù) 2019-12-25
  • 3 回答
  • 0 關(guān)注
  • 5852 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)