本文采用Java将DispatcherServlet
配置在Servlet
容器中,而不会再使用web.xml
文件。
1. Spring MVC启动流程
1.1
2. 搭建web项目
2.1 使用maven创建webapp项目
maven是一款管理java项目依赖、编译、发布的工具。我们可以使用Idea或直接使用maven命令来创建Spittr
项目。
- maven 命令
mvn archetype:generate -DarchetypeCatalog=local -DgroupId=com.jifang -DartifactId=spittr -DarchetypeArtifactId=maven-archetype-webapp
注意-DarchetypeCatalog=local
这里使用的是local而不是remote,因为使用remote需要去远程仓库下载,速度很慢,使用local很快。
- Idea 使用maven创建webapp项目
填入groupId
和ArtifactId
即可,同样的可以在Idea的settings中将maven运行参数设置一下:
2.2 配置DispatcherServlet
DispatcherServlet
是Spring MVC的核心。按照传统方式,像DispatcherServlet这样的Servlet会配置在web.xml文件中,这个文件会放到应用的war包里。但是,借助于Servlet 3规范和Spring 3.1的功能增强,我们可以使用JavaConfig方式配置。
1 | package com.jifang.spittr.config; |
这里有两个方法getRootConfigClasses
和getServletConfigClasses
,而且他们返回了两个Class类型的数组,每一个都包含独特的一个类,分别是RootConfig
和WebConfig
。我们先来看看这两个类都是什么样的。
【RootConfig.java】1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17package com.jifang.spittr.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
/**
* author: jifang
* date: 18-4-6 上午11:25
*/
"com.jifang.spittr"}, (basePackages = {
excludeFilters = { .Filter(type = FilterType.ANNOTATION, value = EnableWebMvc.class)})
public class RootConfig {
}
【WebConfig.java】1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44package com.jifang.spittr.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
/**
* 最小但可用的Spring MVC配置
* author: jifang
* date: 18-4-6 上午11:26
*/
"com.jifang.spittr.web") (
public class WebConfig extends WebMvcConfigurerAdapter{
/**
* 配置JSP视图解析器
* @return
*/
public ViewResolver viewResolver(){
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/views/");
resolver.setSuffix(".jsp");
//使得可以在JSP页面中通过${ }访问容器中的bean。
resolver.setExposeContextBeansAsAttributes(true);
return resolver;
}
/**
* 配置静态资源的处理
* @param configurer
*/
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
configurer.enable();
}
}
SpringMVC 项目启动时配置的东西还有很多,HandlerException 异常处理,数据校验等,这些Spring提供的抽象类WebMvcConfigurerAdapter中已经实现好了,我们在项目中直接继承就行了。
rootConfig应该扫描除了@Controller注解以外的注解,webConfig专注扫描的@Controller注解。容器启动时加载顺序是 先RootConfig 后WebConfig,RootConfig先加载时会创建Controller层的单例,紧接着WebConfig加载时会检测相应的Bean是否已经创建,若父容器(RootConfig)已经创建了该Bean,子容器(WebConfig)就不会再去创建了。关于RootConfig
和WebConfig
这两个类之间的区别可以参考我的下一篇文章:AbstractAnnotationConfigDispatcherServletInitializer类方法getRootConfigClasses和getServletConfigClasses区别
2.3 定义最简单的Controller
1 | package com.jifang.spittr.web; |
包结构:
框起来的是必须的
pom文件:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- Spring相关 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
配置好tomcat启动项目,运行之后可以看到Hello World!
参考文献
[1] 零配置简单搭建SpringMVC 项目
[2] 《Spring实战》4th