registration.setOrder(FilterRegistrationBean.HIGHEST_PRECEDENCE);怎么在org.springframework.core中使用静态访问。为"HIGHEST_PRECEDENCE"指定了" Ordered"。
时间: 2024-03-16 13:41:59 浏览: 153
在SpringBoot中静态资源访问方法
可以通过以下方式在org.springframework.core中静态访问"HIGHEST_PRECEDENCE":
```java
import org.springframework.core.Ordered;
registration.setOrder(Ordered.HIGHEST_PRECEDENCE);
```
这里使用了Ordered接口中定义的常量HIGHEST_PRECEDENCE来指定FilterRegistrationBean的顺序,而Ordered接口也在org.springframework.core包中定义。
阅读全文