原始整合方式
- 数据表
```sql
create database ssm character set utf8;
use ssm;
create table account(
id int primary key auto_increment,
name varchar(100),
money double(7,2)
);
```
- 创建 Maven 工程
- 导入 Maven 坐标
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
代码语言:txt复制 <groupId>com.ruochen</groupId>
代码语言:txt复制 <artifactId>ssm</artifactId>
代码语言:txt复制 <version>1.0-SNAPSHOT</version>
代码语言:txt复制 <packaging>war</packaging>
代码语言:txt复制 <properties>
代码语言:txt复制 <maven.compiler.source>8</maven.compiler.source>
代码语言:txt复制 <maven.compiler.target>8</maven.compiler.target>
代码语言:txt复制 </properties>
代码语言:txt复制 <dependencies>
代码语言:txt复制 <!--spring相关-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.springframework</groupId>
代码语言:txt复制 <artifactId>spring-context</artifactId>
代码语言:txt复制 <version>5.0.5.RELEASE</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--aop织入-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.aspectj</groupId>
代码语言:txt复制 <artifactId>aspectjweaver</artifactId>
代码语言:txt复制 <version>1.8.8</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.springframework</groupId>
代码语言:txt复制 <artifactId>spring-jdbc</artifactId>
代码语言:txt复制 <version>5.0.5.RELEASE</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--事务相关-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.springframework</groupId>
代码语言:txt复制 <artifactId>spring-tx</artifactId>
代码语言:txt复制 <version>5.0.5.RELEASE</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--测试相关-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.springframework</groupId>
代码语言:txt复制 <artifactId>spring-test</artifactId>
代码语言:txt复制 <version>5.0.5.RELEASE</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--springmvc相关-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.springframework</groupId>
代码语言:txt复制 <artifactId>spring-webmvc</artifactId>
代码语言:txt复制 <version>5.0.5.RELEASE</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--servlet 和 jsp-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>javax.servlet</groupId>
代码语言:txt复制 <artifactId>servlet-api</artifactId>
代码语言:txt复制 <version>2.5</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>javax.servlet.jsp</groupId>
代码语言:txt复制 <artifactId>jsp-api</artifactId>
代码语言:txt复制 <version>2.0</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--mybatis 相关-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.mybatis</groupId>
代码语言:txt复制 <artifactId>mybatis</artifactId>
代码语言:txt复制 <version>3.5.5</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--spring 整合 mybatis -->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>org.mybatis</groupId>
代码语言:txt复制 <artifactId>mybatis-spring</artifactId>
代码语言:txt复制 <version>1.3.1</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>mysql</groupId>
代码语言:txt复制 <artifactId>mysql-connector-java</artifactId>
代码语言:txt复制 <version>5.1.46</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <!--数据源-->
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>c3p0</groupId>
代码语言:txt复制 <artifactId>c3p0</artifactId>
代码语言:txt复制 <version>0.9.1.2</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>junit</groupId>
代码语言:txt复制 <artifactId>junit</artifactId>
代码语言:txt复制 <version>4.13</version>
代码语言:txt复制 <scope>test</scope>
代码语言:txt复制 </dependency>
代码语言:txt复制 <dependency>
代码语言:txt复制 <groupId>jstl</groupId>
代码语言:txt复制 <artifactId>jstl</artifactId>
代码语言:txt复制 <version>1.2</version>
代码语言:txt复制 </dependency>
代码语言:txt复制 </dependencies>
代码语言:txt复制</project>
代码语言:txt复制```
- 编写实体类
Account.java
```java
package com.ruochen.domain;
代码语言:txt复制public class Account {
代码语言:txt复制 private Integer id;
代码语言:txt复制 private String name;
代码语言:txt复制 private Double money;
代码语言:txt复制 public Integer getId() {
代码语言:txt复制 return id;
代码语言:txt复制 }
代码语言:txt复制 public void setId(Integer id) {
代码语言:txt复制 this.id = id;
代码语言:txt复制 }
代码语言:txt复制 public String getName() {
代码语言:txt复制 return name;
代码语言:txt复制 }
代码语言:txt复制 public void setName(String name) {
代码语言:txt复制 this.name = name;
代码语言:txt复制 }
代码语言:txt复制 public Double getMoney() {
代码语言:txt复制 return money;
代码语言:txt复制 }
代码语言:txt复制 public void setMoney(Double money) {
代码语言:txt复制 this.money = money;
代码语言:txt复制 }
代码语言:txt复制 @Override
代码语言:txt复制 public String toString() {
代码语言:txt复制 return "Account{"
代码语言:txt复制 "id=" id
代码语言:txt复制 ", name='" name '''
代码语言:txt复制 ", money=" money
代码语言:txt复制 '}';
代码语言:txt复制 }
代码语言:txt复制}
代码语言:txt复制```
- 编写 Mapper 接口
```java
package com.ruochen.mapper;
代码语言:txt复制import com.ruochen.domain.Account;
代码语言:txt复制import java.util.List;
代码语言:txt复制public interface AccountMapper {
代码语言:txt复制 void save(Account account);
代码语言:txt复制 List<Account> findAll();
代码语言:txt复制}
代码语言:txt复制```
- 编写 Service 接口
```java
package com.ruochen.service;
代码语言:txt复制import com.ruochen.domain.Account;
代码语言:txt复制import java.util.List;
代码语言:txt复制public interface AccountService {
代码语言:txt复制 void save(Account account);
代码语言:txt复制 List<Account> findAll();
代码语言:txt复制}
代码语言:txt复制```
- 编写 Service 接口实现
```java
package com.ruochen.service.impl;
代码语言:txt复制import com.ruochen.domain.Account;
代码语言:txt复制import com.ruochen.mapper.AccountMapper;
代码语言:txt复制import com.ruochen.service.AccountService;
代码语言:txt复制import org.apache.ibatis.io.Resources;
代码语言:txt复制import org.apache.ibatis.session.SqlSession;
代码语言:txt复制import org.apache.ibatis.session.SqlSessionFactory;
代码语言:txt复制import org.apache.ibatis.session.SqlSessionFactoryBuilder;
代码语言:txt复制import org.springframework.stereotype.Service;
代码语言:txt复制import java.io.IOException;
代码语言:txt复制import java.io.InputStream;
代码语言:txt复制import java.util.List;
代码语言:txt复制@Service("accountService")
代码语言:txt复制public class AccountServiceImpl implements AccountService {
代码语言:txt复制 @Override
代码语言:txt复制 public void save(Account account) {
代码语言:txt复制 try {
代码语言:txt复制 InputStream resourceAsStream = Resources.getResourceAsStream("sqlMapConfig.xml");
代码语言:txt复制 SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsStream);
代码语言:txt复制 SqlSession sqlSession = sqlSessionFactory.openSession();
代码语言:txt复制 AccountMapper mapper = sqlSession.getMapper(AccountMapper.class);
代码语言:txt复制 mapper.save(account);
代码语言:txt复制 sqlSession.commit();
代码语言:txt复制 sqlSession.close();
代码语言:txt复制 } catch (IOException e) {
代码语言:txt复制 e.printStackTrace();
代码语言:txt复制 }
代码语言:txt复制 }
代码语言:txt复制 @Override
代码语言:txt复制 public List<Account> findAll() {
代码语言:txt复制 try {
代码语言:txt复制 InputStream resourceAsStream = Resources.getResourceAsStream("sqlMapConfig.xml");
代码语言:txt复制 SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsStream);
代码语言:txt复制 SqlSession sqlSession = sqlSessionFactory.openSession();
代码语言:txt复制 AccountMapper mapper = sqlSession.getMapper(AccountMapper.class);
代码语言:txt复制 List<Account> accountList = mapper.findAll();
代码语言:txt复制 sqlSession.close();
代码语言:txt复制 return accountList;
代码语言:txt复制 } catch (IOException e) {
代码语言:txt复制 e.printStackTrace();
代码语言:txt复制 }
代码语言:txt复制 return null;
代码语言:txt复制 }
代码语言:txt复制}
代码语言:txt复制```
- 编写 Controller
```java
package com.ruochen.controller;
代码语言:txt复制import com.ruochen.domain.Account;
代码语言:txt复制import com.ruochen.service.AccountService;
代码语言:txt复制import org.springframework.beans.factory.annotation.Autowired;
代码语言:txt复制import org.springframework.stereotype.Controller;
代码语言:txt复制import org.springframework.web.bind.annotation.RequestMapping;
代码语言:txt复制import org.springframework.web.bind.annotation.ResponseBody;
代码语言:txt复制import org.springframework.web.servlet.ModelAndView;
代码语言:txt复制import java.util.List;
代码语言:txt复制@Controller
代码语言:txt复制@RequestMapping("/account")
代码语言:txt复制public class AccountController {
代码语言:txt复制 @Autowired
代码语言:txt复制 private AccountService accountService;
代码语言:txt复制 // 保存
代码语言:txt复制 @RequestMapping(value = "/save", produces = "text/html;charset=UTF-8")
代码语言:txt复制 @ResponseBody
代码语言:txt复制 public String save(Account account) {
代码语言:txt复制 accountService.save(account);
代码语言:txt复制 return "保存成功";
代码语言:txt复制 }
代码语言:txt复制 // 查询
代码语言:txt复制 @RequestMapping("/findAll")
代码语言:txt复制 public ModelAndView findAll() {
代码语言:txt复制 List<Account> accountList = accountService.findAll();
代码语言:txt复制 ModelAndView modelAndView = new ModelAndView();
代码语言:txt复制 modelAndView.addObject("accountList", accountList);
代码语言:txt复制 modelAndView.setViewName("accountList");
代码语言:txt复制 return modelAndView;
代码语言:txt复制 }
代码语言:txt复制}
代码语言:txt复制```
- 编写添加页面
```java
<%--
Created by IntelliJ IDEA.
User: ruochen
Date: 2022/3/12
Time: 21:31
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>添加账户信息表单</h1>
<form name="accountForm" action="${pageContext.request.contextPath}/account/save" method="post">
账户名称:<input type="text" name="name"><br/>
账户金额:<input type="text" name="money"><br/>
<input type="submit" value="保存"><br/>
</form>
</body>
</html>
代码语言:txt复制```
- 编写列表页面
```java
<%--
Created by IntelliJ IDEA.
User: ruochen
Date: 2022/3/12
Time: 21:34
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>展示账户数据列表</h1>
<table border="1">
<tr>
<th>账户ID</th>
<th>账户名称</th>
<th>账户金额</th>
</tr>
<c:forEach items="${accountList}" var="account">
<tr>
<td>${account.id}</td>
<td>${account.name}</td>
<td>${account.money}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
```
- 编写相应配置文件
- Spring 配置文件:applicationContext.xml ```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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/context http://www.springframework.org/schema/context/spring-context.xsd
">
代码语言:txt复制 <!--组件扫描 扫描 service 和 mapper-->
代码语言:txt复制 <context:component-scan base-package="com.ruochen">
代码语言:txt复制 <!--排除controller的扫描-->
代码语言:txt复制 <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
代码语言:txt复制 </context:component-scan>
代码语言:txt复制</beans>
代码语言:txt复制```
代码语言:txt复制- SpringMVC 配置文件:`spring-mvc.xml`
```xml
<?xml version="1.0" encoding="UTF-8"?>
<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">
代码语言:txt复制 <!--组件扫描 主要扫描 controller-->
代码语言:txt复制 <context:component-scan base-package="com.ruochen.controller"/>
代码语言:txt复制 <!--配置 mvc 注解驱动-->
代码语言:txt复制 <mvc:annotation-driven/>
代码语言:txt复制 <!--配置内部资源视图解析器-->
代码语言:txt复制 <bean id="resourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
代码语言:txt复制 <property name="prefix" value="/WEB-INF/pages/"/>
代码语言:txt复制 <property name="suffix" value=".jsp"/>
代码语言:txt复制 </bean>
代码语言:txt复制 <!--开放静态资源访问权限-->
代码语言:txt复制 <mvc:default-servlet-handler/>
代码语言:txt复制</beans>
代码语言:txt复制```
代码语言:txt复制- MyBatis 映射文件:`AccountMapper.xml`
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruochen.mapper.AccountMapper">
<insert id="save" parameterType="account">
insert into account
values (#{id}, #{name}, #{money})
</insert>
代码语言:txt复制 <select id="findAll" resultType="account">
代码语言:txt复制 select *
代码语言:txt复制 from account
代码语言:txt复制 </select>
代码语言:txt复制</mapper>
代码语言:txt复制```
代码语言:txt复制- MyBatis 核心文件:`sqlMapConfig.xml`
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
代码语言:txt复制 <!--加载 properties文件-->
代码语言:txt复制 <properties resource="jdbc.properties"/>
代码语言:txt复制 <!--定义别名-->
代码语言:txt复制 <typeAliases>
代码语言:txt复制 <!--<typeAlias type="com.ruochen.domain.Account" alias="account"/>-->
代码语言:txt复制 <!--扫包-->
代码语言:txt复制 <package name="com.ruochen.domain"/>
代码语言:txt复制 </typeAliases>
代码语言:txt复制 <!--环境-->
代码语言:txt复制 <environments default="development">
代码语言:txt复制 <environment id="development">
代码语言:txt复制 <transactionManager type="JDBC"/>
代码语言:txt复制 <dataSource type="POOLED">
代码语言:txt复制 <property name="driver" value="${jdbc.driver}"/>
代码语言:txt复制 <property name="url" value="${jdbc.url}"/>
代码语言:txt复制 <property name="username" value="${jdbc.username}"/>
代码语言:txt复制 <property name="password" value="${jdbc.password}"/>
代码语言:txt复制 </dataSource>
代码语言:txt复制 </environment>
代码语言:txt复制 </environments>
代码语言:txt复制 <!--加载映射-->
代码语言:txt复制 <mappers>
代码语言:txt复制 <!--<mapper resource="com.ruochen.mapper.AccountMapper"/>-->
代码语言:txt复制 <package name="com.ruochen.mapper"/>
代码语言:txt复制 </mappers>
代码语言:txt复制</configuration>
代码语言:txt复制```
代码语言:txt复制- 数据库连接信息文件:`jdbc.properties`
```xml
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/ssm?useSSL=false&useServerPrepStmts=true&useUnicode=true&characterEncoding=UTF-8
jdbc.username=root
jdbc.password=ruochen666
```
- Web.xml 文件:`web.xml`
```xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
代码语言:txt复制 <!--spring 监听器-->
代码语言:txt复制 <context-param>
代码语言:txt复制 <param-name>contextConfigLocation</param-name>
代码语言:txt复制 <param-value>classpath:applicationContext.xml</param-value>
代码语言:txt复制 </context-param>
代码语言:txt复制 <listener>
代码语言:txt复制 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
代码语言:txt复制 </listener>
代码语言:txt复制 <!--springmvc 的前端控制器-->
代码语言:txt复制 <servlet>
代码语言:txt复制 <servlet-name>DispatcherServlet</servlet-name>
代码语言:txt复制 <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
代码语言:txt复制 <init-param>
代码语言:txt复制 <param-name>contextConfigLocation</param-name>
代码语言:txt复制 <param-value>classpath:spring-mvc.xml</param-value>
代码语言:txt复制 </init-param>
代码语言:txt复制 <load-on-startup>1</load-on-startup>
代码语言:txt复制 </servlet>
代码语言:txt复制 <servlet-mapping>
代码语言:txt复制 <servlet-name>DispatcherServlet</servlet-name>
代码语言:txt复制 <url-pattern>/</url-pattern>
代码语言:txt复制 </servlet-mapping>
代码语言:txt复制 <!--乱码过滤器-->
代码语言:txt复制 <filter>
代码语言:txt复制 <filter-name>CharacterEncodingFilter</filter-name>
代码语言:txt复制 <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
代码语言:txt复制 <init-param>
代码语言:txt复制 <param-name>encoding</param-name>
代码语言:txt复制 <param-value>UTF-8</param-value>
代码语言:txt复制 </init-param>
代码语言:txt复制 </filter>
代码语言:txt复制 <filter-mapping>
代码语言:txt复制 <filter-name>CharacterEncodingFilter</filter-name>
代码语言:txt复制 <url-pattern>/*</url-pattern>
代码语言:txt复制 </filter-mapping>
代码语言:txt复制</web-app>
代码语言:txt复制```
代码语言:txt复制- 日志文件:`log4j.xml`
```xml
### direct log messages to stdout ###
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
代码语言:txt复制### direct messages to file mylog.log ###
代码语言:txt复制log4j.appender.file=org.apache.log4j.FileAppender
代码语言:txt复制log4j.appender.file.File=c:/mylog.log
代码语言:txt复制log4j.appender.file.layout=org.apache.log4j.PatternLayout
代码语言:txt复制log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
代码语言:txt复制### set log levels - for more verbose logging change 'info' to 'debug' ###
代码语言:txt复制log4j.rootLogger=debug, stdout
代码语言:txt复制```
MyBatis 整合 Spring 实现
sqlMapConfig.xml
修改如下
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
代码语言:txt复制 <!--定义别名-->
代码语言:txt复制 <typeAliases>
代码语言:txt复制 <package name="com.ruochen.domain"/>
代码语言:txt复制 </typeAliases>
代码语言:txt复制</configuration>
代码语言:txt复制```
applicationContext.xml
修改如下
```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
">
代码语言:txt复制 <!--组件扫描 扫描 service 和 mapper-->
代码语言:txt复制 <context:component-scan base-package="com.ruochen">
代码语言:txt复制 <!--排除controller的扫描-->
代码语言:txt复制 <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
代码语言:txt复制 </context:component-scan>
代码语言:txt复制 <!--加载 properties 文件-->
代码语言:txt复制 <context:property-placeholder location="classpath:jdbc.properties"/>
代码语言:txt复制 <!--配置数据源-->
代码语言:txt复制 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
代码语言:txt复制 <property name="driverClass" value="${jdbc.driver}"/>
代码语言:txt复制 <property name="jdbcUrl" value="${jdbc.url}"/>
代码语言:txt复制 <property name="user" value="${jdbc.username}"/>
代码语言:txt复制 <property name="password" value="${jdbc.password}"/>
代码语言:txt复制 </bean>
代码语言:txt复制 <!--配置 sessionFactory-->
代码语言:txt复制 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
代码语言:txt复制 <property name="dataSource" ref="dataSource"/>
代码语言:txt复制 <!--加载 mybatis 核心文件-->
代码语言:txt复制 <property name="configLocation" value="classpath:sqlMapConfig.xml"/>
代码语言:txt复制 </bean>
代码语言:txt复制 <!--扫描 mapper 所在的包,为 mapper 创建实现类-->
代码语言:txt复制 <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
代码语言:txt复制 <property name="basePackage" value="com.ruochen.mapper"/>
代码语言:txt复制 </bean>
代码语言:txt复制 <!--声明式事务控制-->
代码语言:txt复制 <!--平台事务管理器-->
代码语言:txt复制 <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
代码语言:txt复制 <property name="dataSource" ref="dataSource"/>
代码语言:txt复制 </bean>
代码语言:txt复制 <!--配置事务增强-->
代码语言:txt复制 <tx:advice id="txAdvice">
代码语言:txt复制 <tx:attributes>
代码语言:txt复制 <tx:method name="*"/>
代码语言:txt复制 </tx:attributes>
代码语言:txt复制 </tx:advice>
代码语言:txt复制 <!--事务的aop织入-->
代码语言:txt复制 <aop:config>
代码语言:txt复制 <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.ruochen.service.impl.*.*(..))"/>
代码语言:txt复制 </aop:config>
代码语言:txt复制</beans>
代码语言:txt复制```
AccountServiceImpl.java
修改如下
```java
package com.ruochen.service.impl;
代码语言:txt复制import com.ruochen.domain.Account;
代码语言:txt复制import com.ruochen.mapper.AccountMapper;
代码语言:txt复制import com.ruochen.service.AccountService;
代码语言:txt复制import org.springframework.beans.factory.annotation.Autowired;
代码语言:txt复制import org.springframework.stereotype.Service;
代码语言:txt复制import java.util.List;
代码语言:txt复制@Service("accountService")
代码语言:txt复制public class AccountServiceImpl implements AccountService {
代码语言:txt复制 @Autowired
代码语言:txt复制 private AccountMapper accountMapper;
代码语言:txt复制 @Override
代码语言:txt复制 public void save(Account account) {
代码语言:txt复制 accountMapper.save(account);
代码语言:txt复制 }
代码语言:txt复制 @Override
代码语言:txt复制 public List<Account> findAll() {
代码语言:txt复制 return accountMapper.findAll();
代码语言:txt复制 }
代码语言:txt复制}
代码语言:txt复制```
代码语言:javascript复制报错:
Method com/mchange/v2/c3p0/impl/NewProxyResultSet.isClosed()Z is abstract
解决方法在
pom.xml
文件中修改C3P0的依赖包
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.2</version>
</dependency>