Mybatis+struts2+spring整合
把student项目改造成ssm struts2 +mybatis+spring
1,先添加spring支持:类库三个,applicationContext.xml写在webinf下四个命名空间,监听器
2,添加struts2支持 struts2与spring整合的jar包
3,添加mybatis2支持,把jar包导入,mybatis与spring整合的jar包,把原来在mybatis.cfg.xml中的大部分配置都写在applicationContext.xml,跟hibernate一样,只不过像日志输出方式与分页插件还是需要写在mybatis.cfg.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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
<context:component-scan base-package="cn.bdqn.student"/> <!-- 配置数据源 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="oracle.jdbc.OracleDriver"
p:url="jdbc:oracle:thin:@localhost:1521:ORCL"
p:username="stuinfo"
p:password="ok"
/>
<!-- 配置SQLSessionFactory "dataSource"注入数据源 typeAliasesPackage把这个实体类下的所有都自动设置别名-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"
p:dataSource-ref="dataSource"
p:mapperLocations="classpath:cn/bdqn/student/mapper/*.xml"
p:typeAliasesPackage="cn.bdqn.student.entity"
p:configLocation="classpath:mybatis.cfg.xml"
/> <!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
p:dataSource-ref="dataSource"
/> <!-- 事务增强 -->
<tx:advice id="txAdvice">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice> <!-- 事务切面 -->
<aop:config>
<aop:pointcut expression="execution(* cn.bdqn.student.service..*.*(..))" id="txMethods"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txMethods"/>
</aop:config> <!-- 配置动态创建Mapper实现类对象 -->
<!--
<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"
p:mapperInterface="cn.bdqn.student.mapper.UserMapper"
p:sqlSessionFactory-ref="sqlSessionFactory"
/> <bean id="courseMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"
p:mapperInterface="cn.bdqn.student.mapper.CourseMapper"
p:sqlSessionFactory-ref="sqlSessionFactory"
/> <bean id="educationMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"
p:mapperInterface="cn.bdqn.student.mapper.EducationMapper"
p:sqlSessionFactory-ref="sqlSessionFactory"
/> <bean id="studentMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"
p:mapperInterface="cn.bdqn.student.mapper.StudentMapper"
p:sqlSessionFactory-ref="sqlSessionFactory"
/>
--> <!-- 扫描指定的包,根据映射自动生成Mapper实现类对象 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"
p:basePackage="cn.bdqn.student.mapper"
/> </beans>
<?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.bdqn.student.mapper.StudentMapper">
<insert id="saveStudent" parameterType="Student">
INSERT INTO Student(id,name,sex,birthday,cid,eid,contact,time,state,addTime,pic) VALUES(
SEQ_STUDENT.nextval,
#{name},
#{sex},
#{birthday},
#{course.id},
#{education.id},
#{contact},
#{time},
#{state},
#{addtime},
#{pic}
)
</insert> <select id="getStudent" resultMap="studentMap">
SELECT
s.id,
s.name,
s.sex,
s.birthday,
s.cid,
s.eid,
s.contact,
s.time,
s.state,
s.addTime,
c.name AS cname,
e.name AS ename,
s.pic
FROM Student s INNER JOIN Course c ON s.cid=c.id
INNER JOIN Education e ON s.eid=e.id
WHERE s.id=#{id} </select> <select id="findStudent" resultMap="studentMap">
SELECT
s.id,
s.name,
s.sex,
s.birthday,
s.cid,
s.eid,
s.contact,
s.time,
s.state,
s.addTime,
c.name AS cname,
e.name AS ename,
s.pic
FROM Student s INNER JOIN Course c ON s.cid=c.id
INNER JOIN Education e ON s.eid=e.id
<where>
<if test="name!=null">s.name LIKE #{name}</if>
<if test="courseId">AND s.cid=#{courseId}</if>
<if test="time!=null">AND time=#{time}</if>
<if test="educationId!=null">AND s.eid=#{educationId}</if>
<if test="state!=null">AND state=#{state}</if>
</where>
ORDER BY s.id DESC
</select> <resultMap id="studentMap" type="Student">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="sex" property="sex"/>
<result column="birthday" property="birthday"/>
<result column="contact" property="contact"/>
<result column="time" property="time"/>
<result column="state" property="state"/>
<result column="addTime" property="addtime"/>
<result column="birthday" property="birthday"/> <association property="course" javaType="Course">
<id column="cid" property="id"/>
<result column="cname" property="name"/>
</association> <association property="education" javaType="Education">
<id column="eid" property="id"/>
<result column="ename" property="name"/>
</association> </resultMap> <update id="updateStudent" parameterType="Studnet">
UPDATE Student SET
name=#{name},
sex=#{sex},
birthday=#{birthday},
cid=#{course.id},
eid=#{education.id},
contact=#{contact},
time=#{time},
state=#{state},
pic=#{pic}
WHERE
id=#{id} </update> <delete id="deleteStudent">
DELETE FROM Student WHERE id=#{id} </delete> </mapper>
package cn.bdqn.student.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; import cn.bdqn.mybatis.plugin.PageParam;
import cn.bdqn.student.entity.Course;
import cn.bdqn.student.entity.Student; public interface StudentMapper {
public List<Student> findStudent(
@Param("pageParam") PageParam param,
@Param("name") String name,
@Param("courseId") Integer courseId,
@Param("time") Integer time,
@Param("educationId") Integer educationId,
@Param("state") Integer state
); public void saveStudent(Student student); public Student getStudent(Integer id); //更新学生
public void updateStudent(Student student); //删除学生
public void deleteStudent(Integer id);
}
package cn.bdqn.student.dao.student; import java.util.List; import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository; import cn.bdqn.mybatis.plugin.PageParam;
import cn.bdqn.student.entity.Student;
import cn.bdqn.student.mapper.StudentMapper;
import cn.bdqn.student.util.PageBean;
@Repository("studentDAO")
public class StudentDAOImpl implements IStudentDAO{ private StudentMapper studentMapper;
@Autowired
public void setStudentMapper(StudentMapper studentMapper) {
this.studentMapper = studentMapper;
} @Override
public void saveStudent(Student student) {
studentMapper.saveStudent(student);
} @Override
public PageBean findStudent(int pageIndex, int pageSize, String name,
Integer courseId, Integer time, Integer educationId, Integer state) {
PageBean p=new PageBean();
PageParam param=new PageParam(); if(StringUtils.isEmpty(name) ){
name=null;
}//由于name是“”空字符串,但我在判断的时候却是以空来进行判断的,所以需要进行处理 List<Student> results=studentMapper.findStudent(param, name, courseId, time, educationId, state);
p.setPageIndex(pageIndex);
p.setPageSize(pageSize);
p.setPageCount(param.getPageCount());
p.setResults(results);
p.setRowCount(param.getRowCount()); return p;
} @Override
public Student getStudent(Integer id) {
// TODO Auto-generated method stub
return studentMapper.getStudent(id);
} @Override
public void updateStudent(Student student) {
// TODO Auto-generated method stub } @Override
public void deleteStudent(Integer id) {
// TODO Auto-generated method stub } }
Mybatis+struts2+spring整合的更多相关文章
- MyBatis学习(四)MyBatis和Spring整合
MyBatis和Spring整合 思路 1.让spring管理SqlSessionFactory 2.让spring管理mapper对象和dao. 使用spring和mybatis整合开发mapper ...
- Mybatis与Spring整合,使用了maven管理项目,作为初学者觉得不错,转载下来
转载自:http://www.cnblogs.com/xdp-gacl/p/4271627.html 一.搭建开发环境 1.1.使用Maven创建Web项目 执行如下命令: mvn archetype ...
- mybatis与spring整合(基于配置文件)
本文主要介绍了如何将mybatis和spring整合在一起使用,本人使用的是mybatis3.05 + spring3.1.0M2 ,使用dbcp作为数据库连接池. 1.编写数据访问接口(UserDa ...
- mybatis与spring整合时读取properties问题的解决
在学习mybatis与spring整合是,想从外部引用一个db.properties数据库配置文件,在配置文件中使用占位符进行引用,如下: <context:property-placehold ...
- Spring+SpringMVC+MyBatis深入学习及搭建(九)——MyBatis和Spring整合
转载请注明出处:http://www.cnblogs.com/Joanna-Yan/p/6964162.html 前面讲到:Spring+SpringMVC+MyBatis深入学习及搭建(八)--My ...
- Mybatis第五篇【Mybatis与Spring整合】
Mybatis与Spring整合 既然我们已经学了Mybatis的基本开发了,接下来就是Mybatis与Spring的整合了! 以下使用的是Oracle数据库来进行测试 导入jar包 aopallia ...
- MyBatis 与 Spring 整合
MyBatis-Spring 项目 目前大部分的 Java 互联网项目,都是用 Spring MVC + Spring + MyBatis 搭建平台的. 使用 Spring IoC 可以有效的管理各类 ...
- Mybatis(六) Spring整合mybatis
心莫浮躁~踏踏实实走,一步一个脚印,就算不学习,玩,能干嘛呢?人生就是那样,要找点有意思,打发时间的事情来做,而钻研技术,动脑动手的过程,还是比其他工作更有意思些~ so,努力啥的都是强迫自己做自以为 ...
- MyBatis学习(三)---MyBatis和Spring整合
想要了解MyBatis基础的朋友可以通过传送门: MyBatis学习(一)---配置文件,Mapper接口和动态SQL http://www.cnblogs.com/ghq120/p/8322302. ...
随机推荐
- Ceph的客户端安装
Contents [hide] 1 参考 1.1 ceph端口访问控制 1.2 用Kernel方式挂载 1.2.1 安装ELRepo及kernel-lt 1.2.2 修改Grub引导顺序并重启动 1. ...
- 使用QTP对Flight的登录界面进行测试
一.测试用例设计 现在使用QTP对案例程序进行测试, 设计测试用例的要求为: 用户名长度大于等于6个字符 必须为字母[o-z,O-Z]和数字[0-9]组成 不能为空,空格或者特殊字符 正确的密码为:M ...
- Ubuntu 14.04 安装 JDK 7.0
1.新建jvm文件夹-解压 # mkdir /usr/lib/jvm # tar zxvf jdk-7u79-linux-x64.gz -C /usr/lib/jvm 2.设置环境变量,在/etc/p ...
- PHP中关于 basename、dirname、pathinfo 详解
basename(url) 返回路径中的文件名部分. dirname(url) 返回路径中的目录名称部分. pathinfo(url) 返回关于文件路径的信息. bas ...
- WPF:获取控件内的子项
一.界面内容(部分:仅供参考) <Window> <Window.Resources> <!--工具数据源--> <XmlDataProvider x:Key ...
- symfony中twig的模板变量与注释
程序会传递给模板若干变量,你需要在模板里输出他们.例如输出$hello .1{{ hello }}.如果传递给模板的是对象或者数组,你可以使用点. 来输出对象的属性或者方法,或者数组的成员.或者你可以 ...
- 分布式拒绝服务攻击(DDoS)原理及防范
DDoS攻击概念 DoS的攻击方式有很多种,最基本的DoS攻击就是利用合理的服务请求来占用过多的服务资源,从而使合法用户无法得到服务的响应. DDoS攻击手段是在传统的DoS攻击基础之上产生的一类攻击 ...
- C语言中使用静态函数的好处
C语言中使用静态函数的好处: 静态函数会被自动分配在一个一直使用的存储区,直到退出应用程序实例,避免了调用函数时压栈出栈,速度快很多. ???(对这个不是很理解)其实我觉得上面这种说法是错误的,它的主 ...
- C#常用日期格式处理转换[C#日期格式转换大全
DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 Label2.Text = dt.ToFile ...
- DataRow数组转换DataTable
public DataTable ToDataTable(DataRow[] rows) { if (rows == null || rows.Length == 0) return null; Da ...