Spring Java 注解配置之 WebMvc配置

Spring MVC配置(替代web.xml)

Spring MVC配置主要由以下几个部分组成:

  1. Spring MVC启动器
  2. RootApplicationContext
  3. ServletApplicationContext

Spring MVC启动器

Spring MVC启动器主要是实现WebApplicationInitializer接口的实现类。该接口提供一个方法:onStartup(ServletContext servletContext)。当WEB服务容器启动时会扫描所有实现该接口的实现类,并调用onStartup方法。在实现类中可以通过ServletContext注册接口、Servlet等web.xml能实现的配置。

public interface WebApplicationInitializer {
        void onStartup(ServletContext servletContext) throws ServletException;
}

在Spring Web包中提供了1个实现WebApplicationInitializer接口的抽象类,在Spring Webmvc包中提供了2个继承于AbstractContextLoaderInitializer的抽象类:

  1. AbstractContextLoaderInitializer
  2. AbstractDispatcherServletInitializer
  3. AbstractAnnotationConfigDispatcherServletInitializer

AbstractContextLoaderInitializer

该抽象类只是为了创建ContextLoaderListener,并通过抽象方法createRootApplicationContext创建的RootApplicationContext注入进Servlet容器事件里面去。

AbstractDispatcherServletInitializer

该抽象类继承于AbstractContextLoaderInitializer,默认注册了一个 通过ServletApplicationContext创建的DispatcherServlet。以及提供了配置Mappers的抽象方法、注册Filters的默认返回null的基本方法。

AbstractAnnotationConfigDispatcherServletInitializer

该抽象类继承于AbstractDispatcherServletInitializer,使用AnnotationConfigWebApplicationContext来创建RootApplicationContext与ServletApplicationContext。getRootConfigClasses和getServletConfigClasses两个抽象方法,通过两个抽象方法来注册java配置类。

开始配置

我的配置有以下配置类

  1. SpringStartupInitializer
  2. ServletRootConfig
  3. ServletWebConfig
  4. SpringCacheEhcacheConfig
  5. SpringDataSourceConfig
  6. SpringShiroSourceConfig

SpringStartupInitializer

SpringStartupInitializer是为了替代web.xml,它是一个实现了WebApplicationInitializer接口的类,由于我的配置主要是使用注解配置,因此SpringStartupInitializer是为了替代web只需基础于AbstractAnnotationConfigDispatcherServletInitializer

public class SpringStartupInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
    @Override
    protected FrameworkServlet createDispatcherServlet(WebApplicationContext servletAppContext) {
        DispatcherServlet dispatcherServlet = new DispatcherServlet(servletAppContext);
        dispatcherServlet.setThrowExceptionIfNoHandlerFound(true);

        return dispatcherServlet;
    }

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        super.onStartup(servletContext);

        registerDruidStatViewServlet(servletContext);
    }

    @Override
    protected Filter[] getServletFilters() {
        return new Filter[] { //
                new CharacterEncodingFilter("UTF-8"), // 编码转换
                new DelegatingFilterProxy("springSessionRepositoryFilter"), // Spring Session
                new DelegatingFilterProxy("shiroFilter") };
    }

    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class<?>[] { ServletRootConfig.class };
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return new Class<?>[] { ServletWebConfig.class };
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] { "/*" };
    }
}

ServletRootConfig

该配置类主要是配置缓存、数据源、Shiro安全框架

@Configuration
@EnableCaching // 启用缓存注解
@EnableScheduling // 启用注解配置定时器
@Import(value = { SpringCacheEhcacheConfig.class, SpringDataSourceConfig.class, SpringShiroConfig.class })
public class ServletRootConfig {
    /**
     * Session ID 管理
     * 
     * @return
     */
    @Bean
    public HttpSessionIdResolver httpSessionIdResolver() {
               // Session ID 获取,主要作用是为了从请求中获取sessionID,这里使用的我自己实现的一个方式
               // Spring 提供有三种获取方式:
               // 1、CookieHttpSessionIdResolver  从Cookie中获取
               // 2、HeaderHttpSessionIdResolver 从请求头中获取
               // 3、ParamHttpSessionIdResolver 从请求参数中获取

        return new OrderHttpSessionIdResolver();
    }

    /** 加载配置文件 */
    @Bean("propertiesBean")
    public PropertiesFactoryBean propertiesFactoryBean() throws IOException {
        PropertiesFactoryBean factoryBean = new PropertiesFactoryBean();
        factoryBean.setLocations(ResourceUtil.getResources("classpath:config/*.properties"));

        return factoryBean;
    }

    /** 注入配置文件 */
    @Bean("propertyPlaceholderConfigurer")
    public static PropertyPlaceholderConfigurer propertyPlaceholderConfigurer(@Qualifier("propertiesBean") Properties properties) throws IOException {
        PropertyPlaceholderConfigurer configurer = new PropertyPlaceholderConfigurer();
        configurer.setProperties(properties);

        return configurer;
    }
}

ServletWebConfig

ServletWebConfig是实现WebMvcConfigurer的配置类,主要是为了配置Spring WebMvc。在WebMvcConfigurer类中提供有一下空方法


    /** */
    @Override
    default void configurePathMatch(PathMatchConfigurer configurer) ;

    /** 配置内容协商器 */
    @Override
    default void configureContentNegotiation(ContentNegotiationConfigurer configurer) ;

    /** */
    @Override
    default void configureAsyncSupport(AsyncSupportConfigurer configurer) ;

    /** */
    @Override
    default void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) ;

    /** 添加格式转换器 */
    @Override
    default void addFormatters(FormatterRegistry registry);

    /** 添加过滤器 */
    @Override
    default void addInterceptors(InterceptorRegistry registry);

    /** 添加静态资源 */
    @Override
    default void addResourceHandlers(ResourceHandlerRegistry registry);

    /** 添加跨域配置 */
    @Override
    default void addCorsMappings(CorsRegistry registry);

    /** */
    @Override
    default void addViewControllers(ViewControllerRegistry registry);

    /** 配置视图转换器 */
    @Override
    default void configureViewResolvers(ViewResolverRegistry registry);

    /** */
    @Override
    default void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers);

    /** */
    @Override
    default void addReturnValueHandlers(List<HandlerMethodReturnValueHandler> returnValueHandlers);

    /** 配置消息转换器,会覆盖Spring默认的消息转换器 */
    @Override
    default void configureMessageConverters(List<HttpMessageConverter<?>> converters);

    /** 在Spring默认的消息转换器基础上,扩展自定义消息转换器 */
    @Override
    default void extendMessageConverters(List<HttpMessageConverter<?>> converters);

    /** 配置异常处理器 */
    @Override
    default void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers);

    /** 扩展默认异常处理器 */
    @Override
    default void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers);

    /**  */
    @Override
    default Validator getValidator();

    /** */
    @Override
    default MessageCodesResolver getMessageCodesResolver();

在这里我的ServletWebConfig只实现了部分方法


@Configuration
@EnableWebMvc // 启用WebMVC
@ComponentScan("cn.virens.web.controller") // 扫描controller所在的包
@Import(value = { SpringBeetlConfig.class })// beetl 配置(源码:https://gitee.com/virens/multi_spring/blob/master/src/main/java/cn/virens/config/SpringBeetlConfig.java)
public class ServletWebConfig implements WebMvcConfigurer {
    /**
     * 内容协商器配置。将后缀为json的配置为json处理,后缀为jspx的为页面处理
     */
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.defaultContentType(MediaType.APPLICATION_JSON_UTF8);

        configurer.mediaType("jspx", MediaType.TEXT_HTML);
        configurer.mediaType("json", MediaType.APPLICATION_JSON_UTF8);
    }

    /**
     * 添加视图解析器
     */
    @Override
    public void configureViewResolvers(ViewResolverRegistry registry) {
        // 配置Beetl 视图
        BeetlSpringViewResolver beetlSpringViewResolver = new BeetlSpringViewResolver();
        beetlSpringViewResolver.setContentType("text/html;charset=UTF-8");
        beetlSpringViewResolver.setSuffix(".html");
        beetlSpringViewResolver.setOrder(2);

        // 配置FastJson 视图
        FastJsonJsonView fastJsonJsonView = new FastJsonJsonView();
        fastJsonJsonView.getFastJsonConfig().setCharset(Charset.forName("UTF-8"));
        fastJsonJsonView.getFastJsonConfig().setDateFormat(CalendarUtil.YMD_HMS); // 所有时间格式都为yyyy-MM-dd HH:mm:ss

        // 注册视图
        registry.viewResolver(beetlSpringViewResolver);
        registry.enableContentNegotiation(fastJsonJsonView);
    }

    /**
     * 添加消息转换器
     */
    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        FastJsonHttpMessageConverter fastJsonHttpMessageConverter = new FastJsonHttpMessageConverter();
        fastJsonHttpMessageConverter.getFastJsonConfig().setCharset(Charset.forName("UTF-8"));
        fastJsonHttpMessageConverter.getFastJsonConfig().setDateFormat(CalendarUtil.YMD_HMS); // 所有时间格式都为yyyy-MM-dd HH:mm:ss

        // 将消息转换器转给Spring进行管理
        converters.add(new ByteArrayHttpMessageConverter());
        converters.add(new ResourceHttpMessageConverter());
        converters.add(new SourceHttpMessageConverter<>());
        converters.add(new StringHttpMessageConverter(Charset.forName("UTF-8")));
        converters.add(fastJsonHttpMessageConverter);
    }

    /**
     * 添加异常统一处理
     */
    @Override
    public void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers) {
                // 我自己实现的(源码:https://gitee.com/virens/multi_spring/blob/master/src/main/java/cn/virens/web/components/spring/VirExceptionResolver.java)
        VirExceptionResolver exceptionResolver = new VirExceptionResolver();

        exceptionResolver.addExceptionMessage(UnauthorizedException.class, "未授权");
        exceptionResolver.addExceptionMessage(UnauthenticatedException.class, "未登录");
        exceptionResolver.addExceptionMessage(NoHandlerFoundException.class, "接口不存在");
        exceptionResolver.addExceptionMessage(DataIntegrityViolationException.class, "请检查约束");
        exceptionResolver.addExceptionMessage(MaxUploadSizeExceededException.class, "文件超出大小限制");

        exceptionResolver.addExceptionMappings(UnauthorizedException.class, "/error/401");
        exceptionResolver.addExceptionMappings(UnauthenticatedException.class, "/error/401");
        exceptionResolver.addExceptionMappings(HostUnauthorizedException.class, "/error/401");
        exceptionResolver.addExceptionMappings(NoHandlerFoundException.class, "/error/404");

        exceptionResolver.setDefaultErrorView("/error/500");
        exceptionResolver.setDefaultStatusCode(500);
        exceptionResolver.setExceptionAttribute("ex");
        exceptionResolver.afterPropertiesSet();

        exceptionResolvers.add(exceptionResolver);
    }

    /**
     * 格式转换器
     */
    @Override
    public void addFormatters(FormatterRegistry registry) {
        registry.addConverter(new DateConverter());
    }

    /**
     * 添加静态资源路径
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/error/**").addResourceLocations("/error/");
        registry.addResourceHandler("/assets/**").addResourceLocations("/assets/");
        registry.addResourceHandler("/upload/**").addResourceLocations("/upload/");
        registry.addResourceHandler("/favicon.ico").addResourceLocations("/favicon.ico");
    }

    /**
     * 跨域配置
     */
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/api/**").allowedMethods("GET", "POST", "OPTIONS").allowedHeaders("X-Auth-Token", "Content-Type").exposedHeaders("X-Auth-Token").allowCredentials(true).maxAge(86400);
    }

    /** 文件上传配置 */
    @Bean
    public CommonsMultipartResolver multipartResolver() {
        CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver();
        multipartResolver.setMaxUploadSize(10 * 1024 * 1024);
        multipartResolver.setDefaultEncoding("UTF-8");

        return multipartResolver;
    }

    /** 注入配置文件 */
    @Bean("propertyPlaceholderConfigurer")
    public static PropertyPlaceholderConfigurer propertyPlaceholderConfigurer(@Qualifier("propertiesBean") Properties properties) throws IOException {
        PropertyPlaceholderConfigurer configurer = new PropertyPlaceholderConfigurer();
        configurer.setProperties(properties);

        return configurer;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,372评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,368评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,415评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,157评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,171评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,125评论 1 297
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,028评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,887评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,310评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,533评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,690评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,411评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,004评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,659评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,812评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,693评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,577评论 2 353

推荐阅读更多精彩内容

  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,803评论 6 342
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,651评论 18 139
  • 从三月份找实习到现在,面了一些公司,挂了不少,但最终还是拿到小米、百度、阿里、京东、新浪、CVTE、乐视家的研发岗...
    时芥蓝阅读 42,239评论 11 349
  • 1、树立你现阶段使用的手机产品的亮点 答:使用的iphone6s 论手机外形设计屏幕色彩显示度,个人认为国产有很多...
    Brodinski阅读 257评论 0 0
  • 5-6年级 ---Don't forget to give my best wishes to your pare...
    不变的追求阅读 102评论 0 0