ssm构建笔记
ssm笔记
原始版构建方式
-
alt+insert添加依赖,引入spring-webmvc依赖
-
open moudle setting 配置web中的web Resource Directories路径和Deployment Descriptos路径
-
创建任意controller
-
于resources文件夹中创建applicationContext.xml和spring-servlet.xml
-
applicationContext.xml配置,先配置需要扫描的包
1
2
3
4
5
6
7
8
9
10
11
12
13
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/c"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- base-package 表示要扫描的包;use-default-filters表示使用默认的过滤器,true表示全扫-->
<context:component-scan base-package="org.ll" use-default-filters="true">
<!--除去controller,其他的都扫-->
<context:exclude-filter type="annotation" experssion="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!--下面可配mybatis-->
</beans> -
spring-servlet.xml的配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/c"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!--不使用默认的过滤器,需要指定扫描的包-->
<context:component-scan base-package="org.ll" user-default-filters="false">
<!--包括哪个,即指定哪个包-->
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<mvc:annotation-driven/>
<!--视图解析器等在下面配-->
</beans> -
web.xml文件配置
1 |
|
评论