首页>代码>基于SpringBoot实现的学生就业管理系统>/源代码/employment/src/main/java/com/project/config/LoginConfig.java
package com.project.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.*;

/**
 * @author: liangrenren
 * @date: 2021-03-04 11:30
 **/
@Configuration
public class LoginConfig extends WebMvcConfigurationSupport {

    @Value("${upload}")
    private String upload;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        InterceptorRegistration registration = registry.addInterceptor(new AdminInterceptor());
        registration.addPathPatterns("/**");
        registration.excludePathPatterns(
                "/user/login",
                "/user/getVerificationCode",
                "/upload/**",
                "/user/addCompany",
                "/image/**",
                "/js/**",
                "/lib/**",
                "/index.html");
    }

    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        super.addResourceHandlers(registry);
        registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/")
                .addResourceLocations("classpath:/static/");
        registry.addResourceHandler("/upload/**").addResourceLocations("file:" + upload);
    }
}
最近下载更多
小丑八怪  LV2 昨天
luhong  LV5 9月20日
vincemokea  LV9 9月14日
yangchengshuai  LV16 9月3日
hulewang  LV8 7月16日
大神程序员  LV23 7月2日
sgrfsgrts  LV2 5月15日
SX520886  LV6 4月24日
最近浏览更多
ymsyms  LV2 昨天
奋斗的小蚂蚁  LV13 10月16日
求学的熊猫  LV11 10月10日
wyx065747  LV67 10月1日
310834626  LV3 9月29日
1231578  LV9 9月28日
疯子庭  LV8 9月25日
jlmarket  LV22 9月23日
梁小贤  LV1 9月12日
vincemokea  LV9 9月11日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友