如何在Spring-boot中修复错误“ Whitelabel Error Page”

时间:2019-04-21 06:58:07

标签: api spring-boot

我尝试通过Spring-boot进行API Web服务,但出现错误 “ Whitelabel错误页面 此应用程序没有针对/ error的显式映射,因此您将其视为后备。

2019年4月21日星期日13:42:49 ICT 发生意外错误(类型=未找到,状态= 404)。 没有可用的消息”

ArrestGetByConApplication.java : 

package com.arrestbycon.arrestGetByCon;
import org.springframework.boot.SpringApplication; 
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan
public class ArrestGetByConApplication {

public static void main(String[] args) {
    SpringApplication.run(ArrestGetByConApplication.class, args);
}

}

and some of my controller :

package com.arrestbycont.arrestGetByCon;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.sql.*;
import java.util.ArrayList;
import com.arrestbycon.arrestGetByCon.Result;

@RestController
public class GetByCon {

    @RequestMapping(value = "/test", method = RequestMethod.GET)   
    public ArrayList<Result> getResult() {
      Integer arr_id;
      Integer off_id;
      String arr_code;
      String off_code;
      String off_name;

      ArrayList<Object> myArrlist = new ArrayList<Object>();

1 个答案:

答案 0 :(得分:0)

“白色标签页”本身并不是错误,而是Spring返回的模板,以防万一出现错误而没有其他自定义处理。

在提到的这种特定情况下,错误显然是您要命中的控制器端点不存在(因此404代码)。只需确保您使用正确的HTTP方法对正确的端点进行API调用即可。