driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test
user=LF
password=LF
<?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:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
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
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd"> <!-- 引入外部文件 -->
<context:property-placeholder location="classpath:jdbc.properties" />
<!-- 配置包扫描 -->
<context:component-scan base-package="cn.zr"/>
<!-- 启用自动代理 -->
<aop:aspectj-autoproxy/> <!-- 配置事务传播属性 -->
<tx:advice id="advice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 所有已get开头的方法都是只读,换句话说,get开始的方法不参与事务
-->
<tx:method name="get*" read-only="true" />
<!-- 其他方法使用默认配置 -->
<tx:method name="*" rollback-for="java.lang.Throwable" />
</tx:attributes>
</tx:advice> <aop:config>
<!-- 配置切点 -->
<aop:pointcut expression="execution(* cn.zr.pringandmybatis.service.impl.*.*(..))" id="pointcut"/>
<!-- 将通知(事务属性)与切点连接一起 -->
<aop:advisor advice-ref="advice" pointcut-ref="pointcut" />
</aop:config> <!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${driver}"></property>
<property name="url" value="${url}"></property>
<property name="username" value="${user}"></property>
<property name="password" value="${password}"></property>
</bean> <!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean> <!-- mybatis配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 关联数据源 -->
<property name="dataSource" ref="dataSource"/>
<!-- 配置mybatis配置文件的路径 -->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
<!-- 配置要映射类包的路径 -->
<property name="typeAliasesPackage" value="cn.zr.pringandmybatis.pojo"/>
<property name="mapperLocations">
<list>
<value>classpath:cn/zr/pringandmybatis/mapper/xml/*Mapper.xml</value>
</list>
</property>
</bean> <!-- MyBatis扫描 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 指定对应的接口跟Maper.xml文件映射所在的包 -->
<property name="basePackage" value="cn.zr.pringandmybatis.mapper"/>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean> </beans>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration>
</configuration>
<?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="cn.zr.pringandmybatis.mapper.UserMapper"> <!-- 配置数据库字段与实体类属性的对应关系 -->
<resultMap type="User" id="userinfo">
<id column="username" property="name" />
<result column="age" property="age"/>
</resultMap> <!-- 查询所有用户的信息 -->
<select id="getAllUserInfo" resultMap="userinfo">
select username,age from user
</select> <!-- 添加用户 -->
<insert id="addUser" parameterType="User">
insert into user (username,age) values(#{name},#{age})
</insert> <!-- 更新用户 -->
<update id="updateUser" parameterType="User">
update user set age = #{age} where username=#{name}
</update> <delete id="deleteUser" parameterType="java.lang.String">
delete from user where username=#{name}
</delete> </mapper>
package cn.zr.pringandmybatis.pojo;

public class User {

    private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public User() {
}
public User(String name, int age) {
this.name = name;
this.age = age;
}
@Override
public String toString() {
return "User [name=" + name + ", age=" + age + "]";
} }
package cn.zr.pringandmybatis.mapper;

import java.util.List;

import org.springframework.stereotype.Component;

import cn.zr.pringandmybatis.pojo.User;

@Component
public interface UserMapper { /**
* 获取所有用户的信息
* @return 用户对象的集合
*/
public List<User> getAllUserInfo(); /**
* 添加用户
* @param user 被添加的用户
* @return 返回成功操作数据库的数据量
*/
public int addUser(User user); /**
* 更新用户信息
* @param user 被更新的用户
* @return 返回成功操作数据库的数据量
*/
public int updateUser(User user); /**
* 通过用户名删除用户
* @param name 用户名
* @return 返回成功操作数据库的数据量
*/
public int deleteUser(String name);
}
package cn.zr.pringandmybatis.service;

import java.util.List;

import cn.zr.pringandmybatis.pojo.User;

public interface OperationService {

    /**
* 获取所有的用户
* @return 返回用户集合
*/
List<User> getAllUserInfo(); /**
* 添加用户
* @param user 被添加的用户
* @return 返回成功操作数据库的数据量
*/
int addUser(User user); /**
* 更新用户信息
* @param user 被更新的用户
* @return 返回成功操作数据库的数据量
*/
int updateUser(User user); /**
* 通过用户名删除用户
* @param name 用户名
* @return 返回成功操作数据库的数据量
*/
int deleteUser(String name); }
package cn.zr.pringandmybatis.service.impl;

import java.util.List;

import javax.annotation.Resource;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import cn.zr.pringandmybatis.mapper.UserMapper;
import cn.zr.pringandmybatis.pojo.User;
import cn.zr.pringandmybatis.service.OperationService; @Component
public class OperationServiceImpl implements OperationService { @Resource
private UserMapper userMapper; @Override
public List<User> getAllUserInfo() { return userMapper.getAllUserInfo();
} @Override
public int addUser(User user) {
return userMapper.addUser(user);
} @Override
public int updateUser(User user) {
return userMapper.updateUser(user);
} @Override
public int deleteUser(String name) {
return userMapper.deleteUser(name);
} }
package cn.zr.pringandmybatis.utils;

import java.util.List;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; import cn.zr.pringandmybatis.pojo.User;
import cn.zr.pringandmybatis.service.OperationService; public class TestClass { public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
//获取实现类对象
OperationService operationService = (OperationService)ac.getBean(OperationService.class);
/*//查询所有的数据
List<User> list = operationService.getAllUserInfo();
for (User user : list) {
System.out.println(user);
}*/ /*// 添加数据
User user = new User("甘", 25);
int count = operationService.addUser(user);
if (count>0) {
System.out.println("添加成功");
}else {
System.out.println("添加失败");
}*/ /*// 修改
User user = new User("甘雨路", 20);
int count = operationService.updateUser(user);
if (count>0) {
System.out.println("修改成功");
}else {
System.out.println("修改失败");
}*/ // 删除
int count = operationService.deleteUser("甘露");
if (count>0) {
System.out.println("删除成功");
}else {
System.out.println("删除失败");
} }
}

mybatis spring 框架整合的更多相关文章

  1. Mybatis+Spring框架整合

    1.整合思路 1.SqlSessionFactory对象应该放到spring容器中作为单例存在. 2.传统dao的开发方式中,应该从spring容器中获得sqlsession对象. 3.Mapper代 ...

  2. Spring+SpringMVC+MyBatis+Maven框架整合

    本文记录了Spring+SpringMVC+MyBatis+Maven框架整合的记录,主要记录以下几点 一.Maven需要引入的jar包 二.Spring与SpringMVC的配置分离 三.Sprin ...

  3. Spring 框架整合Struts2 框架和 Hibernate 框架

    1. Spring 框架整合 Struts2 框架 // [第一种整合方式(不推荐)](http://www.cnblogs.com/linkworld/p/7718274.html) // 从 Se ...

  4. 使用Spring框架整合Java Mail

    我的博客名为黑客之谜,今天演示的案例中会出现我的邮箱,还不赶紧收藏!我现在是小白,但是随着时间的流逝,我会逐渐向大神走进,所以,喜欢我的,或者喜欢大神的,点一波关注吧!顺便说一下,双十二快到了,有什么 ...

  5. 学习spring第五天 mybatis+spring的整合(maven多模块数据查询使用了分页和连接池),以及aop

    mybatis+spring的整合: 导入的依赖:1.数据库连接:mysql-connector-java 2.连接池:druid 3.servlet:javax.servlet-api 4.jstl ...

  6. 【Java】MyBatis与Spring框架整合(一)

    本文将利用 Spring 对 MyBatis 进行整合,在对组件实现解耦的同时,还能使 MyBatis 框架的使用变得更加方便和简单. 整合思路 作为 Bean 容器,Spring 框架提供了 IoC ...

  7. spring 框架整合mybatis的源码分析

    问题:spring 在整合mybatis的时候,我们是看不见sqlSessionFactory,和sqlsession(sqlsessionTemplate 就是sqlsession的具体实现)的,这 ...

  8. Spring+mybatis+struts框架整合的配置具体解释

    学了非常久的spring+mybatis+struts.一直都是单个的用他们,或者是两两组合用过,今天总算整合到一起了,配置起来有点麻烦.可是配置完一次之后.就轻松多了,那么框架整合配置具体解释例如以 ...

  9. 吴裕雄--天生自然JAVA SPRING框架开发学习笔记:SSM(Spring+Spring MVC+MyBatis)框架整合搭建详细步骤

    因为 Spring MVC 是 Spring 框架中的一个子模块,所以 Spring 与 SpringMVC 之间不存在整合的问题.实际上,SSM 框架的整合只涉及 Spring 与 MyBatis ...

随机推荐

  1. 【MFC】CDC::BitBlt介绍

    CDC::BitBlt介绍 2011-11-04 08:25 19576人阅读 评论(6) 收藏 举报 摘自: http://blog.csdn.net/bberdong/article/detail ...

  2. Apache的Mod_rewrite学习 (RewriteCond重写规则的条件) 转

    RewriteCondSyntax: RewriteCond TestString CondPattern [flags] RewriteCond指令定义一条规则条件.在一条RewriteRule指令 ...

  3. HihoCoder1622 : 有趣的子区间(预处理+组合数)

    有趣的子区间 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 如果一个区间[a, b]内恰好包含偶数个回文整数,我们就称[a, b]是有趣的区间. 例如[9, 12]包含 ...

  4. python学习-实现用户密码登录,输错三次锁定

    作业需求: 输入用户名密码 认证成功后显示欢迎信息 输错三次后锁定 实现思路: 判断用户是否在黑名单,若在黑名单,则将用户锁定 判断用户是否存在,若不存在,提示用户不存在 若用户存在,判断登录密码是否 ...

  5. 实体对象,List泛型 转换为DataTable

    /// <summary>        /// 实体对象转换DataTable        /// </summary>        /// <param name ...

  6. LeetCode IPO

    原题链接在这里:https://leetcode.com/problems/ipo/description/ 题目: Suppose LeetCode will start its IPO soon. ...

  7. UVA10652 Board Wrapping

    题意 PDF 分析 就是一个裸的凸包. 如何确定点?就用中心向四边连垂直的向量然后旋转,加上中心点,即可得出旋转后的点. 时间复杂度\(O(T n \log n)\) 代码 #include<i ...

  8. 第12篇 PSR-1规范

    这个规范也不多,七点如下: 1. Overview Files MUST use only <?php and <?= tags. Files MUST use only UTF-8 wi ...

  9. switch控件的使用

    java中: public class MainActivity extends Activity implements OnCheckedChangeListener{ private Switch ...

  10. 对DDS的深度认识

    我知道,我对与电子有关的所有事情都很着迷,但不论从哪个角度看,今天的现场可编程门阵列(FPGA),都显得“鹤立鸡群”,真是非常棒的器件.如果在这个智能时代,在这个领域,想拥有一技之长的你还没有关注FP ...