即使抛出异常,Flux.error也返回200个http代码

时间:2017-11-03 09:52:12

标签: java spring spring-boot spring-webflux

我使用spring-boot(v2 M3)和spring-webflux开展项目。 在编写功能时,我看到我的微服务返回了一个Http 200状态代码,同时在通量中返回错误。

所以,我做了一个简单的测试: 我创建了一个简单的控制器

@RestController
@RequestMapping(value = "/test")
public class TestController {

   @GetMapping(value = "/errors")
   public Flux<Object> getErrors() {
       return Flux.error(new RuntimeException("test"));
   }
}

使用简单的异常处理程序:

@ControllerAdvice
public class TestExceptionHandler {

     private static final Logger LOGGER = LoggerFactory.getLogger(TestExceptionHandler.class);

     @ExceptionHandler(value = { RuntimeException.class })
     public ResponseEntity<String> handleServerError(final RuntimeException e) {
        LOGGER.error(e.getMessage(), e);
        return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(e.getMessage());
     }
}

我在集成测试中使用webTestClient测试结果:

@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@TestPropertySource("classpath:test.properties")
public class TestErrorsIT {

    @Autowired
    private WebTestClient webTestClient;

    @Test
    public void getErrors() {

        this.webTestClient.get().uri("/test/errors").accept(MediaType.APPLICATION_STREAM_JSON).exchange().expectStatus()
                        .is5xxServerError();
    }
}

因此,我的测试失败,因为我的控制器返回错误通量返回200状态代码而不是503状态代码(在我的控制台中可以很好地跟踪异常日志“test”)。你知道为什么吗?

  

java.lang.AssertionError:响应状态值200的范围   预期:但是:

     
    

获取http://localhost:54432/test/errors     WebTestClient-Request-Id:[1]     接受:[application / stream + json]

  
     

没有内容

     

&LT; 200 OK&lt;内容类型:[application / stream + json]&lt;   传输编码:[chunked]&lt;日期:[星期五,2017年11月3日09:42:53 GMT]

     

内容尚不可用

1 个答案:

答案 0 :(得分:0)

在这种情况下,应用程序依赖于spring-cloud-starter-eurekaspring-boot-starter-web本身对spring-boot-starter-web具有传递依赖性。

var item0 = new Item(); ref var item1 = ref item0; item0 = null; Console.WriteLine(item1 == null); // true // THIS WORKS! 添加到Spring Boot应用程序会将其转换为Spring MVC应用程序,这可以解释这种行为。