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. ...
随机推荐
- 视频处理控件TVideoGrabber部分技术问题解答
TVideoGrabber是一个功能全面.易于使用的视频捕捉工具和多媒体播放器,本文搜集了一些TVideoGrabber的技术问答,并针对于有的朋友遇到的疑难给出了解答. 一.在TVideoGrabb ...
- Android NDK 开发(四)java传递数据到C【转】
转载请注明出处:http://blog.csdn.net/allen315410/article/details/41845701 前面几篇文章介绍了Android NDK开发的简单概念.常见错误及处 ...
- datatables中columns.render的使用
可直接在columns申明中对应列下方使用render改变该列样式 也可单独在columnsDefs中用targets指定目标. "render":function(data,ty ...
- Backup: Date and Time in Perl6
时间 Date #Operators ==, <, <= , >, >=, !=, eq, lt, le # Methods $date = Date.new(YEAR, MO ...
- android 中通过代码创建控件
package bvb.de.openadbwireless.circle; import android.annotation.TargetApi; import android.app.Activ ...
- Linux查看CPU和内存使用情况【转】
转自:http://www.cnblogs.com/xd502djj/archive/2011/03/01/1968041.html 在系统维护的过程中,随时可能有需要查看 CPU 使用率,并根据相应 ...
- spring命名空间不需要版本号
为什么dubbo启动没有问题? 这篇blog源于一个疑问: 我们公司使了阿里的dubbo,但是阿里的开源网站http://code.alibabatech.com,挂掉有好几个月了,为什么我们的应用启 ...
- Redis整合Spring结合使用缓存实例
林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 摘要:本文介绍了如何在Spring中配置redis,并通过Spring中AOP的思想,将缓存的 ...
- array_pop()将数组最后一个单元弹出(出栈)
// 使用系统函数中的引用传参 $array = [1,2,3,4,5,6,7,8,9];//数组 // 调用一个函数 array_pop($array); //输出原数组 ...
- Asp.net Vnext IValueProvider
概述 本文已经同步到<Asp.net Vnext 系列教程 >中] IValueProvider 根据ValueProvider获取数据,在对数据进行绑定 代码实现 private cla ...