pom.xml
1 | <groupId>com.ssm</groupId> |
web.xml
DispatcherServlet
首先我们提到spring不能错过的便是DispatcherServlet,它作为spring的核心帮我们简化了很多操作,下图为在web.xml中DispatcherServlet的配置代码 (包含servlet3.0文件上传)要注意两处的\
1 | <servlet> |
error page
1 | <!--自定义错误跳转页面--> |
SpringEncodingFilter
这是一个spring自带的字符过滤器,为了保证使用中文的时候不会出现乱码,一般而言将其放在最前端
1 | <filter> |
ContextLoaderListener
上下文监听器,作用是自动装配ApplicationContext的配置信息第一时间初始化springIOC容器,如果在web.xml中不写任何参数配置信息,默认的路径是/WEB-INF/applicationContext.xml,在WEB-INF目录下创建的xml文件的名称必须是applicationContext.xml
1 | <listener> |
spring总结—applicationContext.xml
1 | <context:component-scan base-package="com.ssm"/> |