spring boot框架的web.xml文件怎么配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot框架的web.xml文件怎么配置相关的知识,希望对你有一定的参考价值。
Spring分为多个文件进行分别的配置,其中在servlet-name中如果没有指定init-param属性,那么系统自动寻找的spring配置文件为[servlet-name]-servlet.xml。当需要载入多个spring相关的配置文件时,首先加载ContextLoaderListener类,再指定context-param中指定多个spring配置文件,使用逗号分别隔开各个文件。为了使用方便可以将配置文件进行MVC式的分解,配置控制器Bean的配置文件放置在一个xml文件中,server的Bean放在service.xml文件中。 参考技术A
首先我们先配置welcomefile-list
我们先声明一个类继承WebMvcConfigurerAdapter 重写如下方法即可
注解不能忘
@Configuration@EnableWebMvc@ComponentScan(basePackages =
@Overridepublic void addViewControllers(ViewControllerRegistry registry)
registry.addViewController("/").setViewName("forward:/login.html");
配置controller类返回至指定目录,需要重写如下方法
@Beanpublic ViewResolver viewResolver()
InternalResourceViewResolver resolver = new InternalResourceViewResolver(); resolver.setPrefix("/WEB-INF/view/"); resolver.setSuffix(".jsp"); resolver.setExposeContextBeansAsAttributes(true); return resolver;
我们把另一个类用于配置监听事件编码
Configurationpublic class WebInitializer extends AbstractAnnotationConfigDispatcherServletInitializer
getRootConfigClasses 用于配置最先执行的一些配置文件,如RootConfig.java 比如自定义的filter
getServletConfigClasses 这个文件是用于配置welcomefilelist 前置目录+后缀 error-page等
以上是关于spring boot框架的web.xml文件怎么配置的主要内容,如果未能解决你的问题,请参考以下文章