Springboot前后端不分离

当前项目前后端都在一起时,避免一个一个controller的写使用配置文件进行映射

package com.example.ruiji.Config;

import com.example.ruiji.Interceptor.LoginInterceptor;
import com.example.ruiji.commom.JacksonObjectMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.cbor.MappingJackson2CborHttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

import java.util.List;

@Configuration
//为了解决 WebMvcConfigurationSupport和 Spring Boot 2.0版本以后,官方不再推荐使用WebMvcConfigurationSupport,取而代之的是使用WebMvcConfigurer接口。因此,如果您使用了继承自WebMvcConfigurationSupport的配置类1
public class webMvc extends WebMvcConfigurationSupport {
    /**
     * 在mvc 框架中设置静态资源目录映射 对mvc 路径进行映射
     * @param registry
     */
    @Autowired
    StringRedisTemplate redisTemplate;
    @Autowired
    LoginInterceptor loginInterceptor;
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
            //访问这个路径 映射到对应的静态资源目录  就不需要一个个的controller写跳转
        registry.addResourceHandler("/backend/**").addResourceLocations("classpath:/template/backend/");
        registry.addResourceHandler("/front/**").addResourceLocations("classpath:/template/front/");
        super.addResourceHandlers(registry);
    }
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(loginInterceptor).excludePathPatterns(
                "/backend/**",
                "/front/**",
                "/employee/login",
                "/user/login",
                "backend/page/login/**",
                "/employee/logout/**",
                "/common/**",// 因为前端是通过action直接上传 并不不axios发的 没有authentic 肯定会被拦截
                 //因为前端拦截器失效 所以后端拦截器放行我自己写的验证登录状态接口 来给前端响应式跳转
//                前端除去个人信息不拦截
                "/category/list",
                "/shoppingCart/list",
                "/setmeal/list",
                "/dish/list",
                "/shoppingCart/add"
        );//不用在new 拦截器 并且需要配置拦截路径 避免全部看拦截

    }

    /**
     * 扩展默认转换器
     * 来替代默认的springmvc的转换器
     * @param converters the list of configured converters to extend
     */

//    @Override
//    protected void extendMessageConverters(List> converters) {
//        MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter();
        设置对象转换器 自定义的
//        mappingJackson2HttpMessageConverter.setObjectMapper(new JacksonObjectMapper());
//        // 上写的转换器添加到转换器链中
//        converters.add(0,mappingJackson2HttpMessageConverter);
//
//    }
}

你可能感兴趣的:(spring,boot,后端,java)