首页>代码>Spring Boot+Mybatis+thymeleaf开发的高仿今日头条新闻网站>/src/main/java/com/lm/cms2/config/WebConfiguration.java
package com.lm.cms2.config;

import com.lm.cms2.interceptor.ArticleClickInterceptor;
import com.lm.cms2.interceptor.LoginStateInterceptor;
import com.lm.cms2.interceptor.PassportInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**
 * Created by tuzhenyu on 17-7-20.
 * @author tuzhenyu
 */
@Component
public class WebConfiguration extends WebMvcConfigurerAdapter {
    @Autowired
    private PassportInterceptor passportInterceptor;
    @Autowired
    private ArticleClickInterceptor articleClickInterceptor;
    @Autowired
    private LoginStateInterceptor loginStateInterceptor;
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(passportInterceptor);
        registry.addInterceptor(articleClickInterceptor).addPathPatterns("/article/*");
        registry.addInterceptor(loginStateInterceptor).addPathPatterns("/note");
        super.addInterceptors(registry);
    }
}
最近下载更多
admin_z  LV22 2月4日
chenlie  LV2 2023年11月7日
zzzzzzzzhasdas  LV13 2023年9月6日
mq13947193109  LV19 2023年8月1日
1806795436  LV4 2023年1月10日
微信网友_6257235205754880  LV1 2022年12月11日
huyuxin  LV3 2022年11月9日
hdell65  LV6 2022年10月7日
Ohh.  LV3 2022年5月17日
最近浏览更多
forgetmenot  LV1 昨天
admin_z  LV22 1月28日
fff2003  LV6 2023年11月17日
wnnmmb  LV2 2023年11月13日
chenlie  LV2 2023年11月7日
zhonsadd 2023年10月9日
暂无贡献等级
啊最代码我要下  LV15 2023年9月20日
zzzzzzzzhasdas  LV13 2023年9月6日
张鱼小丸子啊 2023年8月31日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友