Spring注解@Order
SpringBoot注释@order
The lower the number, the higher the precedence
如果使用@Order(-1000)
,那是什么意思?极高?
回答:
是的,@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
以上是 Spring注解@Order 的全部内容, 来源链接: utcz.com/qa/436000.html