整合Spring、SpringMVC、MyBatis

spring+springmvc+mybatis集成

一个核心:将对象交给spring管理。

1新建web项目

2添加项目jar包

spring包见上一篇博客

3建立项目的目录结构

4完成Mapper的集成

和mybatis进行集成,交给spring产生Mapper接口的代理对象。

4.1建立Mapper接口

 1 package org.guangsoft.mapper;
 2
 3 import java.util.List;
 4
 5 import org.guangsoft.pojo.Privilege;
 6
 7 public interface PrivilegeMapper
 8 {
 9     public void addPrivilege(Privilege privilege);
10     public void deletePrivilege(Privilege privilege);
11     public void updatePrivilege(Privilege privilege);
12     public Privilege selectPrivilegeById(Privilege privilege);
13     public List<Privilege> selectAllPrivileges();
14 }

4.2建立Mapper.xml文件

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <!DOCTYPE mapper PUBLIC "-//mybatis.org/DTD Mapper 3.0" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 3 <mapper namespace="org.guangsoft.mapper.PrivilegeMapper">
 4      <insert id="addPrivilege" parameterType="org.guangsoft.pojo.Privilege">
 5          insert into privilege values(null,#{pname})
 6      </insert>
 7      <delete id="deletePrivilege" parameterType="org.guangsoft.pojo.Privilege">
 8          delete from privilege
 9      </delete>
10      <delete id="updatePrivilege" parameterType="org.guangsoft.pojo.Privilege">
11          update privilege set pname=#{pname} where pid=#{pid}
12      </delete>
13      <select id="selectPrivilegeById" parameterType="org.guangsoft.pojo.Privilege" resultType="org.guangsoft.pojo.Privilege">
14          select * from privilege where pid=#{pid}
15      </select>
16      <select id="selectAllPrivileges" resultType="org.guangsoft.pojo.Privilege">
17          select * from privilege
18      </select>
19 </mapper> 

4.3建立application_mapper.xml

在config下建立:

配置数据库连接池。

管理SqlSessionFactory,注入DataSource

产生Mapper接口的代理对象。

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans
 3     xmlns="http://www.springframework.org/schema/beans"
 4     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 5     xmlns:p="http://www.springframework.org/schema/p"
 6     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
 7
 8     <!-- 数据库连接池 -->
 9     <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
10         <!-- 注入数据库连接字符串 -->
11         <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
12         <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/test"></property>
13         <property name="user" value="root"></property>
14         <property name="password" value="root"></property>
15     </bean>
16     <!-- 实例化sessionFactory -->
17     <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
18         <!-- 注入数据库连接池 -->
19         <property name="dataSource" ref="dataSource"></property>
20     </bean>
21     <!-- 产生mapper接口的代理对象
22         mapper接口和mapperxml名字必须一样
23         mapper.java和mapper.xml必须在同一目录下
24         产生的代理对象id文件Mapper接口的第一个字母小写
25     -->
26     <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
27         <!-- 注入sessionFactory -->
28         <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
29         <!-- 注入扫描的包 -->
30         <property name="basePackage" value="org.guangsoft.mapper"></property>
31     </bean>
32 </beans> 

5完成service的功能

5.1建立Service接口

 1 package org.guangsoft.service;
 2
 3 import java.util.List;
 4
 5 import org.guangsoft.pojo.Privilege;
 6
 7 public interface PrivilegeService
 8 {
 9     public void addPrivilege(Privilege privilege);
10     public void deletePrivilege(Privilege privilege);
11     public void updatePrivilege(Privilege privilege);
12     public Privilege selectPrivilegeById(Privilege privilege);
13     public List<Privilege> selectAllPrivileges();
14 } 

5.2建立业务接口实现类

将实现类的对象纳入spring容器。注入Mapper接口的代理对象

 1 package org.guangsoft.service.impl;
 2
 3 import java.util.List;
 4
 5 import org.guangsoft.mapper.PrivilegeMapper;
 6 import org.guangsoft.pojo.Privilege;
 7 import org.guangsoft.service.PrivilegeService;
 8 import org.springframework.beans.factory.annotation.Autowired;
 9 import org.springframework.stereotype.Service;
10
11 @Service
12 public class PrivilegeServiceImpl implements PrivilegeService
13 {
14     /**
15      * 注入Mapper接口的代理对象
16      */
17     @Autowired
18     private PrivilegeMapper privilegeMapper;
19
20     @Override
21     public void addPrivilege(Privilege privilege)
22     {
23         privilegeMapper.addPrivilege(privilege);
24     }
25
26     @Override
27     public void deletePrivilege(Privilege privilege)
28     {
29         privilegeMapper.deletePrivilege(privilege);
30     }
31
32     @Override
33     public void updatePrivilege(Privilege privilege)
34     {
35         privilegeMapper.updatePrivilege(privilege);
36     }
37
38     @Override
39     public Privilege selectPrivilegeById(Privilege privilege)
40     {
41         return privilegeMapper.selectPrivilegeById(privilege);
42     }
43
44     @Override
45     public List<Privilege> selectAllPrivileges()
46     {
47         return privilegeMapper.selectAllPrivileges();
48     }
49
50 } 

5.3建立application_service.xml

扫描service包

事务配置

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans
 3     xmlns="http://www.springframework.org/schema/beans"
 4     xmlns:context="http://www.springframework.org/schema/context"
 5     xmlns:tx="http://www.springframework.org/schema/tx"
 6     xmlns:aop="http://www.springframework.org/schema/aop"
 7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 8     xmlns:p="http://www.springframework.org/schema/p"
 9     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
10     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
11     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
12     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
13
14     <!-- 开启service包的扫描 -->
15     <context:component-scan base-package="org.guangsoft.service.impl"></context:component-scan>
16         <!-- 配置事务  实例化事务管理器 -->
17         <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
18             <property name="dataSource" ref="dataSource"></property>
19         </bean>
20         <!-- 配置切面 -->
21         <tx:advice id="txAdvice" transaction-manager="transactionManager">
22             <tx:attributes>
23                 <tx:method name="add*" isolation="DEFAULT" propagation="REQUIRED"/>
24             </tx:attributes>
25         </tx:advice>
26         <aop:config>
27             <aop:pointcut expression="execution(* org.guangsoft.service.impl.*.*(..))" id="pc"/>
28             <aop:advisor advice-ref="txAdvice" pointcut-ref="pc"/>
29         </aop:config>
30 </beans> 

6完成Action的功能

6.1建立Handler处理器

 1 package org.guangsoft.controller;
 2
 3 import org.guangsoft.pojo.Privilege;
 4 import org.guangsoft.service.PrivilegeService;
 5 import org.springframework.beans.factory.annotation.Autowired;
 6 import org.springframework.stereotype.Controller;
 7 import org.springframework.web.bind.annotation.RequestMapping;
 8
 9 @Controller
10 public class PrivilegeController
11 {
12     @Autowired
13     private PrivilegeService privilegeService;
14     //定义菜单项求求的方法
15     @RequestMapping("/addPrivilege")
16     public String addPrivilege(Privilege privilege)
17     {
18         privilegeService.addPrivilege(privilege);
19         return "index.jsp";
20     }
21 }

6.2建立springmvc的配置文件

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans
 3     xmlns="http://www.springframework.org/schema/beans"
 4     xmlns:context="http://www.springframework.org/schema/context"
 5     xmlns:mvc="http://www.springframework.org/schema/mvc"
 6     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 7     xmlns:p="http://www.springframework.org/schema/p"
 8     xsi:schemaLocation=
 9     "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
10     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
11     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
12
13     <!-- 开启扫描注解 -->
14     <context:component-scan base-package="org.guangsoft.controller"></context:component-scan>
15     <!-- 开启映射注解和适配注解 -->
16     <mvc:annotation-driven></mvc:annotation-driven>
17 </beans> 

7配置web.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
 3   <context-param>
 4     <param-name>contextConfigLocation</param-name>
 5     <param-value>classpath:application_*.xml</param-value>
 6   </context-param>
 7   <listener>
 8     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 9   </listener>
10   <servlet>
11     <servlet-name>springmvc</servlet-name>
12     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
13     <init-param>
14       <param-name>contextConfigLocation</param-name>
15       <param-value>classpath:springmvc_servlet.xml</param-value>
16     </init-param>
17     <load-on-startup>1</load-on-startup>
18   </servlet>
19   <servlet-mapping>
20     <servlet-name>springmvc</servlet-name>
21     <url-pattern>*.action</url-pattern>
22   </servlet-mapping>
23 </web-app> 

8建立视图页面

 1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
 2 <%
 3 String path = request.getContextPath();
 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
 5 %>
 6
 7 <!DOCTYPE HTML>
 8 <html>
 9   <head>
10     <base href="<%=basePath%>">
11     <title>My JSP ‘index.jsp‘ starting page</title>
12     <meta http-equiv="pragma" content="no-cache">
13     <meta http-equiv="cache-control" content="no-cache">
14   </head>
15
16   <body>
17       <div align="center">
18       <form action="addPrivilege.action" method="post">
19           <div>pname:<input name="pname"  /></div>
20           <div><input type="submit" value="提交" /></div>
21       </form>
22       </div>
23   </body>
24 </html> 

9发布测试

时间: 2024-10-05 22:53:13

整合Spring、SpringMVC、MyBatis的相关文章

使用maven整合spring+springmvc+mybatis

使用maven整合spring+springmvc+mybatis 开发环境: 1. jdk1.8 2. eclipse4.7.0 (Oxygen) 3. mysql 5.7 在pom.xml文件中,引入我们需要的jar包:(按需引入jar包) <properties> <!-- 自定义的spring的版本号 --> <spring.version>4.3.18.RELEASE</spring.version> <!-- 自定义的mybaits的版本号

整合 Spring + SpringMVC + MyBatis

< 一 > POM 配置文件 ( 如果出现 JAR 包 引入错误, 请自行下载 ) <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.

java高并发框架 SSM框架 详细整合(Spring+SpringMVC+MyBatis)

获取[下载地址]   [免费支持更新]三大数据库 mysql  oracle  sqlsever   更专业.更强悍.适合不同用户群体[新录针对本系统的视频教程,手把手教开发一个模块,快速掌握本系统] A集成代码生成器 [正反双向(单表.主表.明细表.树形表,开发利器)+快速构建表单;freemaker模版技术 ,0个代码不用写,生成完整的一个模块,带页面.建表sql脚本,处理类,service等完整模块B 集成阿里巴巴数据库连接池druid;  数据库连接池  阿里巴巴的 druid.Drui

整合spring+springmvc+mybatis

开发环境: jdk 1.8 eclipse 4.7.0 (Oxygen) tomcat 8.5.29 mysql 5.7 开发前准备: spring 框架的jar包,在这里使用的是spring-5.0.4        PS:spring中包含了springmvc spring-aop依赖的jar包 mybatis的jar包 mybatis-spring的整合包 mysql-jdbc的jar包 阿里巴巴的druid数据库连接池 日志jar包,注意是log4j 1.2.17 进行ssm整合配置:

shiro与Web项目整合-Spring+SpringMVC+Mybatis+Shiro(八)

Jar包 Web.xml中配置shiro的filter <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://ja

spring+springmvc+mybatis详细运转流程

spring+springmvc+mybatis详细运转流程 2016-04-14 23:38 1892人阅读 评论(0) 收藏 举报 分类: SSM(7) 最近在整合spring+springmvc+mybatis,网上有很多直接整合好的例子,但是下载过来之后发现对于SSM具体的运转流程还是不太清楚,今天看到一篇关于springmvc的详细处理流程,觉得总结的还可以,不懂springmvc运行流程的童鞋,大家一起来学习学习~~ mvc 处理流程: 1. 首先浏览器发送一个 url请求,比如 h

Spring+SpringMVC+MyBatis+easyUI整合基础篇(二)牛刀小试

承接上文,该篇即为项目整合的介绍了. 废话不多说,先把源码和项目地址放上来,重点要写在前面. github地址为ssm-demo 你也可以先体验一下实际效果,点击这里就行啦 账号:admin 密码:123456 从构思这个博客,一直到最终确定以这个项目为切入点,中间也是各种问题出现,毕竟是新人,所以也是十分的小心,修改代码以及搬上github其实花了不少时间,但也特别的认真,不知道是怎么回事,感觉这几天的过程比逼死产品经理还要精彩和享受.或许是博客路上的第一站吧,有压力也有新奇,希望自己能坚持下

Spring+SpringMVC+Mybatis+Mysql整合实例【转】

本文要实现Spring+SpringMVC+Mybatis+Mysql的一个整合,实现了SpringMVC控制访问的页面,将得到的页面参数传递给Spring中的Mybatis的bean类,然后查找Mysql数据的功能,并通过JSP显示出来.建议可以先看笔者另一文章Mybatis与Spring整合创建Web项目 .笔者觉得整合过程中问题比较多的还是Spring+Mybatis的整合,SpringMVC的整合还是比较简单. Spring        Spring 是一个开源框架, Spring 是

简单易学的SSM(Spring+SpringMVC+MyBatis)整合

SSM(Spring+SpringMVC+MyBatis)的整合: 具体执行过程:  1.用户在页面向后台发送一个请求 2.请求由DispatcherServlet 前端控制器拦截交给SpringMVC管理,SpringMVC讲这个请求传递给Controller层处理. 同时请求由Listener监听到交付给Spring,Spring建立IOC容器. 3.Controller层中会调用相应的Service层的方法处理业务逻辑.此时Service从上一步中建立好的IOC容器获取对象,然后获取 到M

spring,springmvc,mybatis基本整合(一)--xml文件配置方式(2)

spring,springmvc,mybatis基本整合(一)–xml文件配置方式(2)之mapper接口 一,整合结构 二,所需jar包 如上图. 三,整合配置 1,web.xml文件 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://j