SSM三大框架整合
Spring+SpringMVC+MyBatis ,利用Spring整合SpringMVC和MyBatis 。
1. 创建数据库和表结构
SQL语句
2. 创建maven工程
引入坐标依赖
- 创建ssm_parent父工程(打包方式选择pom,必须的)
- 创建ssm_web子模块(打包方式是war包)
- 创建ssm_service子模块(打包方式是jar包)
- 创建ssm_dao子模块(打包方式是jar包)
- 创建ssm_domain子模块(打包方式是jar包)
- web依赖于service,service依赖于dao,dao依赖于domain
- 在ssm_parent的pom.xml文件中引入坐标依赖
1 | <dependencies> |
3. 创建对应的目录结构
4. 配置Spring
编写Spring配置文件applicationContext.xml
1 |
|
将AccountServiceImpl.java添加到容器,测试
1 | "accountService") (value = |
测试
1 | // 测试Spring框架 |
5. 配置SpringMVC
在web.xml中配置前端控制器DispatcherServlet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<!--配置前端控制器-->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--设置配置文件路径-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
<!--设置项目启动时DispatcherServlet加载一次-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<!--表示任意请求都会经过servlet-->
<url-pattern>/</url-pattern>
</servlet-mapping>在web.xml中配置过滤器解决中文乱码
1
2
3
4
5
6
7
8
9
10
11
12
13<!--配置解决中文乱码的过滤器-->
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>编写Springmvc的配置文件springmvc.xml
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
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!--开启注解扫描-->
<context:component-scan base-package="com.ligangit"/>
<!--视图解析器-->
<bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!--配置文件解析器 id值必须是multipartResolver -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!--设置上传文件最大10M,即10*1024*1024=10485760-->
<property name="maxUploadSize" value="10485760"/>
</bean>
<!--前端控制器,哪些静态资源不拦截-->
<mvc:resources mapping="/js/**" location="/js/"></mvc:resources>
<mvc:resources mapping="/css/**" location="/css/"></mvc:resources>
<!--开启SpringMVC框架注解支持-->
<mvc:annotation-driven conversion-service="conversionService"/>
</beans>测试SpringMVC的框架是否搭建成功
编写index.jsp和list.jsp,编写超链接
1
<a href="account/findAll">测试SpringMVC</a>
创建AccountController类,编写方法,进行测试
1
2
3
4
5
6
7
8
9
"/account") (
public class AccountController {
"/findAll") (
public String findAll(){
System.out.println("Controller查询所有账户...");
return "list";
}
}
6. Spring整合SpringMVC框架
目的:在Controller中能成功的调用Service对象中的方法。
在项目启动的时候,就去加载Spring的配置文件applicationContext.xml,在web.xml中配置ContextLoaderListener监听器(该监听器只能加载WEB-INF目录下的applicationContext.xml配置文件)
1
2
3
4
5
6
7
8
9<!--配置Spring的监听器 默认只加载WEB-INF目录下的applicationContext.xml配置文件-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--设置配置文件的路径-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
7. 配置Mybatis
编写dao层的SQL
1
2
3
4
5
6
7
8public interface AccountDao {
// 查询所有账户
"select * from account") (
public List<Account> findAll();
// 保存账户信息
"insert into account (name,money) values (#{name},#{money})") (
public void saveAccount(Account account);
}在web项目中编写MyBatis配置文件mybatis-config.xml,characterEncoding设置编码格式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<configuration>
<!--配置环境-->
<environments default="mysql">
<environment id="mysql">
<transactionManager type="JDBC"></transactionManager>
<dataSource type="POOLED">
<property name="url" value="jdbc:mysql:///ssm?characterEncoding=utf8" />
<property name="username" value="root" />
<property name="password" value="123456" />
<property name="driver" value="com.mysql.jdbc.Driver" />
</dataSource>
</environment>
</environments>
<!--引入映射配置文件-->
<mappers>
<!--<mapper class="com.ligangit.dao.AccountDao"/>-->
<package name="com.ligangit.dao"/>
</mappers>
</configuration>测试
注意:添加、修改、删除操作需要提交事务
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
44
45
46/**
* 测试查询
*/
public void testMybatis() throws IOException {
//加载配置文件
InputStream inputStream = Resources.getResourceAsStream("mybatis/mybatis-config.xml");
// 创建SqlSessionFactory对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//创建SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
// 获取到代理对象
AccountDao accountDao = sqlSession.getMapper(AccountDao.class);
//查询所有数据
List<Account> accountList = accountDao.findAll();
for (Account account:accountList){
System.out.println(account);
}
//关闭资源
sqlSession.close();
inputStream.close();
}
/**
* 测试保存
*/
public void testMybatis2() throws IOException {
Account account=new Account();
account.setName("小白");
account.setMoney(400d);
//加载配置文件
InputStream inputStream = Resources.getResourceAsStream("mybatis/mybatis-config.xml");
// 创建SqlSessionFactory对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//创建SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
// 获取到代理对象
AccountDao accountDao = sqlSession.getMapper(AccountDao.class);
//保存
accountDao.saveAccount(account);
//提交事务
sqlSession.commit();
//关闭资源
sqlSession.close();
inputStream.close();
}结果
8. Spring整合Mybatis框架
在Spring配置文件applicationContext.xml中配置Mybatis
1 | <!--Spring整合Mybatis框架--> |
将dao注入容器
1 |
|
service层调用dao
1 | "accountService") (value = |
MyBatis配置文件mybatis-config.xml可以删除了
9. Spring整合Mybatis框架配置事务
配置Spring框架声明式事务管理,用于添加、修改、删除操作提交。
在Spring配置文件applicationContext.xml中配置声明式事务管理。
1 | <!--配置Spring框架声明式事务管理,用于添加、修改、删除操作提交--> |
测试:
jsp页面:
1 | <a href="account/findAll">测试SpringMVC</a> |
控制器代码:
1 |
|
最后更新: 2020年07月13日 23:02