Spring注释@Order

时间:2018-03-15 06:14:13

标签: spring-boot spring-annotations

spring boot annotation @order

The lower the number, the higher the precedence

如果我使用@Order(-1000),那意味着什么?非常高?

1 个答案:

答案 0 :(得分:3)

是的,@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