Mybatis基础入门(四)——与springMVC的集成

前面的增删改查还没有融入到一个web项目中,这里在前面的基础上,集成spring管理相关的bean,并在web层集成springmvc。同样会有源码的下载。

一、目录结构:

二、集成spring:

因为是一个web项目,且使用了spring作为粘合剂,相关的jar包就不多解释了,详见源码。项目上篇文章中的结构,这里把映射文件单独放到一个目录,而且添加了Controller的包,映射文件内容不变。注意到这里讲其他配置文件整合到了config包中。因为使用spring,所以Configuration.xml中的数据连接就移动到了applicationContext.xml文件中,当然可以独立到database.properties文件中。

spring管理的事务、Mybatis的sqlSessionFactoryBean,以及项目要扫描的Mybatis的映射文件包路径属性,数据源等都在applicationContext.xml文件中:

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xmlns:tx="http://www.springframework.org/schema/tx"
  6. xmlns:context="http://www.springframework.org/schema/context"
  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.0.xsd
  10. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  11. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
  12. http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
  13. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
  14. default-autowire="byName" default-lazy-init="false">
  15. <!--本示例采用DBCP连接池,应预先把DBCP的jar包复制到工程的lib目录下。 -->
  16. <context:property-placeholder    location="classpath:/config/database.properties" />
  17. <!--     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
  18. destroy-method="close" p:driverClassName="com.mysql.jdbc.Driver"
  19. p:url="jdbc:mysql://127.0.0.1:3306/mybatis?characterEncoding=utf8"
  20. p:username="root"
  21. p:password="123"
  22. p:maxActive="10"
  23. p:maxIdle="10">
  24. </bean> -->
  25. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  26. <property name="dataSource" ref="dataSource" />
  27. </bean>
  28. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  29. <!--dataSource属性指定要用到的连接池-->
  30. <property name="dataSource" ref="dataSource"/>
  31. <!--configLocation属性指定mybatis的核心配置文件-->
  32. <property name="configLocation" value="classpath:config/Configuration.xml" />
  33. <!-- 所有配置的mapper文件 -->
  34. <property name="mapperLocations" value="classpath*:com/tgb/mybatis/mapper/*.xml" />
  35. </bean>
  36. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  37. <property name="basePackage" value="com.tgb.mybatis.inter" />
  38. </bean>
  39. </beans>

三、集成springMVC:

相关的jar包参见源码,springMVC充当了web端的框架,mvc-dispatcher-servlet.xml和web.xml中是相关的配置。

mvc-dispatcher-servlet.xml:

[html] view plaincopy

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:context="http://www.springframework.org/schema/context"
  3. xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  9. http://www.springframework.org/schema/mvc
  10. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
  11. <context:component-scan base-package="com.tgb.controller" />
  12. <mvc:annotation-driven />
  13. <mvc:resources mapping="/static/**" location="/WEB-INF/static/"/>
  14. <mvc:default-servlet-handler/>
  15. <bean
  16. class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  17. <property name="prefix">
  18. <value>/WEB-INF/pages/</value>
  19. </property>
  20. <property name="suffix">
  21. <value>.jsp</value>
  22. </property>
  23. </bean>
  24. </beans>

web.xml:

[html] view plaincopy

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  3. <display-name>MyBatis_Spring_MVC</display-name>
  4. <welcome-file-list>
  5. <welcome-file>index.jsp</welcome-file>
  6. </welcome-file-list>
  7. <filter>
  8. <filter-name>encodingFilter</filter-name>
  9. <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  10. <init-param>
  11. <param-name>encoding</param-name>
  12. <param-value>UTF-8</param-value>
  13. </init-param>
  14. <init-param>
  15. <param-name>forceEncoding</param-name>
  16. <param-value>true</param-value>
  17. </init-param>
  18. </filter>
  19. <filter-mapping>
  20. <filter-name>encodingFilter</filter-name>
  21. <url-pattern>/*</url-pattern>
  22. </filter-mapping>
  23. <context-param>
  24. <param-name>contextConfigLocation</param-name>
  25. <param-value>classpath*:config/applicationContext.xml</param-value>
  26. </context-param>
  27. <listener>
  28. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  29. </listener>
  30. <listener>
  31. <listener-class>
  32. org.springframework.web.context.ContextCleanupListener</listener-class>
  33. </listener>
  34. <!-- mvc配置 -->
  35. <servlet>
  36. <servlet-name>mvc-dispatcher</servlet-name>
  37. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  38. <load-on-startup>1</load-on-startup>
  39. </servlet>
  40. <servlet-mapping>
  41. <servlet-name>mvc-dispatcher</servlet-name>
  42. <url-pattern>/</url-pattern>
  43. </servlet-mapping>
  44. </web-app>

web.xml中的启动顺序是:context-param—》listener—》filter—》servlet,如果servlet配置了load-on-startup参数(非负整数,含0,且越小越优先启动)才会在服务器启动的时候加载到内存。

控制层:

UserController,相当于struts中的action,因为使用注解,省去了像struts中的一堆的配置,个人感觉这样对开发和维护都很方便:

[java] view plaincopy

  1. @Controller
  2. @RequestMapping("/article")
  3. public class UserController {
  4. @Autowired
  5. IUserOperation userMapper;
  6. @RequestMapping("/list")
  7. public ModelAndView listall(HttpServletRequest request,HttpServletResponse response){
  8. List<Article> articles=userMapper.getUserArticles(1);
  9. ModelAndView mav=new ModelAndView("list");
  10. mav.addObject("articles",articles);
  11. return mav;
  12. }
  13. }

展示层:

界面使用el表达式,解析返回的数据:

[html] view plaincopy

  1. <body>
  2. <c:forEach items="${articles}" var="item">
  3. ${item.id }--${item.title }--${item.content }<br />
  4. </c:forEach>
  5. </body>

四、测试:

这里使用的是tomcat7,部署之后,访问:http://localhost:8080/MyBaits_Spring_MVC//article/list可以看到下面的效果:

注意这里的url,端口后的地址是在controller中配置的,跟struts中稍微有些区别。

五、总结:

到这里才算是一个比较简单的web项目,有了前面文章的铺垫,这里只需要添加spring和mvc的配置,并添加一个controller即可。

Mybatis还有其他很多的功能,比如,动态语句,自动生成代码,相关的一些插件,如分页插件等,有了这些基础,会在后续的文章中,逐步贴出相关的源码。

整理的比较粗略,将代码分享给大家,【源码地址获取

时间: 2024-10-25 05:58:39

Mybatis基础入门(四)——与springMVC的集成的相关文章

MyBatis基础入门《十五》ResultMap子元素(collection)

MyBatis基础入门<十五>ResultMap子元素(collection) 描述: 见<MyBatis基础入门<十四>ResultMap子元素(association )> >>collection >> 复杂类型集合,一对多 >> 内部嵌套 > 映射一个嵌套结果集到一个列表 >> 属性 > property : 映射数据库列的实体对象的属性 > ofType : 完整java类名或别名(集合所包括的

C#基础入门 四

C#基础入门 四 方法参数 值参数:不附加任何修饰符: 输出参数:以out修饰符声明,可以返回一个或多个给调用者: 如果想要一个方法返回多个值,可以用输出参数来处理,输出参数由out关键字标识,如static void Car(out int x,out int y,int z){},与引用参数区别在于:调用方法前无需对输出参数进行初始化,输出型参数用于传递方法返回的数值. 计算矩形面积的方法:(图8) static void rectangle(int length,int width, ou

MyBatis基础入门《五》核心配置文件

MyBatis基础入门<五>核心配置文件 描述: 在前面的章节中,简单的学习使用了一下mybatis,对于配置文件没有过多详细说明. 这里先描述项目中的一个核心配置文件:mybatis-config.xml 文件. 资料参考:http://www.mybatis.org/mybatis-3/ 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration 3 PUB

MyBatis基础入门《七》查询参数传入对象

MyBatis基础入门<七>查询参数传入对象 描述: 在执行查询语句的时候,传入的参数是一个对象,依据对象的属性,进行检索数据.此时,书写SQL语句中的条件时,其参数需要和对象中的属性保持一致. 实体类:TblClient.java 接口方法 注意: 接口中定义了一个新的方法(根据对象属性进行查询数据),方法的参数传入的是一个对象. xml文件 注意: >>> parameterType="baitang" resultType="baitang

MyBatis基础入门《十七》动态SQL

MyBatis基础入门<十七>动态SQL 描述: >> 完成多条件查询等逻辑实现 >> 用于实现动态SQL的元素主要有: > if > trim > where > set > choose( when , otherwise ) > foreach 动态SQL为Mybatis重要部分,项目也重新新建了一个:mybatis-dynamic-sql 项目结构: TblClient.java 1 package com.charles.e

Python基础入门 (四)

一.迭代器&生成器 1.迭代器仅仅是一容器对象,它实现了迭代器协议.它有两个基本方法: 1)next 方法 返回容器的下一个元素 2)_iter_方法 返回迭代器自身.迭代器可以使用内建的iter方法创建 ts = iter(['asd','sds','qweq']) #创建iter方法 print(ts.__next__()) #使用_next_方法返回下一个元素 print(ts.__next__()) print(ts.__next__()) #运行结果 asd sds qweq#需要注意

MyBatis基础入门

鲁春利的工作笔记,好记性不如烂笔头 官方文档详见:http://www.mybatis.org/mybatis-3/zh/index.html 入门 XML配置 XML映射文件 动态SQL Java API 日志

React.js 基础入门四--要点总结

JSX语法,像是在Javascript代码里直接写XML的语法,实质上这只是一个语法糖,每一个XML标签都会被JSX转换工具转换成纯Javascript代码,React 官方推荐使用JSX, 当然你想直接使用纯Javascript代码写也是可以的,只是使用JSX,组件的结构和组件之间的关系看上去更加清晰. 1. HTML 标签 和 React 组件 在JS中写HTML标签,也许小伙伴们都惊呆了,那么React又是怎么区分HTML标签,React组件标签? HTML标签: var myDivEle

Mybatis基础学习(四)&mdash;关系映射

一.模型分析 user和orders user---->orders 一个用户可以创建多个订单,一对多. orders--->user 一个订单只由一个用户创建,一对一.   orders和orderdetail orders--->orderdetail 一个订单可以包括多个订单明细,因为一个订单可以购买多个商品,每个商品的购买信息在orderdetail记录,一对多关系. orderdetail---> orders 一个订单明细只能包括在一个订单中,一对一.   orderd