标签: spring-boot spring-annotations
spring boot annotation @order
The lower the number, the higher the precedence
如果我使用@Order(-1000),那意味着什么?非常高?
@Order(-1000)
答案 0 :(得分:3)
是的,@Order(-1000)会提供比@Order(-1)或@Order(1000)更高的优先级。
@Order(-1)
@Order(1000)
@Order(-2147483648)具有最高优先级。
@Order(-2147483648)
在此处查看更多https://docs.spring.io/spring/docs/current/javadoc-api/constant-values.html#org.springframework.core.Ordered.HIGHEST_PRECEDENCE