今天想拦截所有的json请求,找了一圈没找到解决方案,偶然看到stackoverflow上面的回复,才解决了这个难题。
特贴出来共享。
直接在xml文件中配置即可:
<mvc:interceptors> <mvc:interceptor> <mvc:mapping path="/**/*.json" /> <!-- 定义在mvc:interceptor下面的表示是对特定的请求才进行拦截的 --> <bean class="com.interceptor" /> </mvc:interceptor> </mvc:interceptors>
时间: 2024-10-25 17:58:30