Spring Boot禁用/错误映射

时间:2016-08-03 15:16:24

标签: java spring spring-mvc spring-boot

我正在使用Spring Boot创建API,因此希望禁用/error映射。

我在application.properties中设置了以下道具:

server.error.whitelabel.enabled=false
spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false

然而,当我点击/error时,我得到了:

HTTP/1.1 500 Internal Server Error
Server: Apache-Coyote/1.1
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Wed, 03 Aug 2016 15:15:31 GMT
Connection: close

{"timestamp":1470237331487,"status":999,"error":"None","message":"No message available"}

必填结果

HTTP/1.1 404 Internal Server Error
Server: Apache-Coyote/1.1

3 个答案:

答案 0 :(得分:26)

您可以禁用ErrorMvcAutoConfiguration:

@SpringBootApplication
@EnableAutoConfiguration(exclude = {ErrorMvcAutoConfiguration.class})
public class SpringBootLauncher {

或者通过Spring Boot的application.yml / properties:

spring.autoconfigure.exclude: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration

如果这不是您的选择,您也可以使用自己的实现扩展Spring的ErrorController:

@RestController
public class MyErrorController implements ErrorController {

    private static final String ERROR_MAPPING = "/error";

    @RequestMapping(value = ERROR_MAPPING)
    public ResponseEntity<String> error() {
        return new ResponseEntity<String>(HttpStatus.NOT_FOUND);
    }

    @Override
    public String getErrorPath() {
        return ERROR_MAPPING;
    }

注意:使用上述技术的一个(禁用自动配置或实现错误控制器)。如评论中所述,将无法正常工作

答案 1 :(得分:2)

属性应通过@SpringBootApplication指定。 Kotlin中的示例:

@SpringBootApplication(exclude = [ErrorMvcAutoConfiguration::class])
class SpringBootLauncher {

答案 2 :(得分:0)

在我的情况下,问题在于登录页面标题中引用的Web资源。具体来说,标题中引用了css,但实际上并没有在项目中存在。

在我的WebSecurityConfigurerAdapter实现中,我首先评论了configure(WebSecurity web)的主体,然后尝试登录,而不是显示上面的错误json,我的浏览器的地址栏会显示url导致问题的资源。