小编典典

Spring注解@Order

spring-boot

SpringBoot注释@order

The lower the number, the higher the precedence

如果使用@Order(-1000),那是什么意思?极高?


阅读 2823

收藏
2020-05-30

共1个答案

小编典典

是的,@Order(-1000)比您说@Order(-1)或的优先级更高@Order(1000)

@Order(-2147483648) 具有最高优先级。

在此处查看更多信息https://docs.spring.io/spring/docs/current/javadoc-api/constant-
values.html#org.springframework.core.Ordered.HIGHEST_PRECEDENCE

2020-05-30