第一步:整合dao層java
第二步:整合service層mysql
第三步:整合springmvcspring
首先在resource文件夾下添加兩個文件:數據庫配置文件和日誌配置文件sql
jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://120.25.162.238:3306/mybatis001?characterEncoding=utf-8 jdbc.username=root jdbc.password=123
mybatis本身的配置文件。在resources目錄下新建mybatis文件夾,並新建sqlMapConfig.xml文件數據庫
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <!-- 全局setting配置,根據須要添加 --> <!-- 配置別名 --> <typeAliases> <!-- 批量掃描別名 --> <package name="com.tianlang.po"/> </typeAliases> <!-- 配置mapper 因爲使用spring和mybatis的整合包進行mapper掃描,這裏不須要配置了。 必須遵循:mapper.xml和mapper.java文件同名且在一個目錄 --> <!-- <mappers> </mappers> --> </configuration>
在resources目錄下新建spring文件夾,並新建applicationContext-dao.xml文件。配置:apache
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 加載db.properties文件中的內容,db.properties文件中key命名要有必定的特殊規則 --> <context:property-placeholder location="classpath:db.properties" /> <!-- 配置數據源,dbcp --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driver}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <property name="maxActive" value="30" /> <property name="maxIdle" value="5" /> </bean> <!-- 從整合包裏找,org.mybatis:mybatis-spring:1.2.4 --> <!-- sqlSessionFactory --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 數據庫鏈接池 --> <property name="dataSource" ref="dataSource" /> <!-- 加載mybatis的全局配置文件 --> <property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml" /> </bean> <!-- mapper掃描器 --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <!-- 掃描包路徑,若是須要掃描多個包,中間使用半角逗號隔開 --> <property name="basePackage" value="com.tianlang.mapper"/> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> <!-- <property name="sqlSessionFactory" ref="sqlSessionFactory" /> 會致使數據源配置無論用,數據庫鏈接不上。且spring 4棄用--> </bean> </beans>
針對綜合查詢mapper,通常狀況會有關聯查詢,建議自定義mapperspring-mvc
<?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="com.tianlang.mapper.ItemsMapperCustom" > <!-- 定義商品查詢的sql片斷,就是商品查詢條件 --> <sql id="query_items_where"> <!-- 使用動態sql,經過if判斷,知足條件進行sql拼接 --> <!-- 商品查詢條件經過ItemsQueryVo包裝對象 中itemsCustom屬性傳遞 --> <if test="itemsCustom!=null"> <if test="itemsCustom.name!=null and itemsCustom.name!=''"> items.name LIKE '%${itemsCustom.name}%' </if> </if> </sql> <!-- 商品列表查詢 --> <!-- parameterType傳入包裝對象(包裝了查詢條件) resultType建議使用擴展對象 --> <select id="findItemsList" parameterType="com.tianlang.po.ItemsQueryVo" resultType="com.tianlang.po.ItemsCustom"> SELECT items.* FROM items <where> <include refid="query_items_where"></include> </where> </select> </mapper>
package com.tianlang.mapper; public interface ItemsMapperCustom { //商品查詢列表 List<ItemsCustom> findItemsList(ItemsQueryVo itemsQueryVo)throws Exception; }
ItemsCustom
package com.tianlang.po; /** * 商品信息的擴展類 */ public class ItemsCustom extends Items{ //添加商品信息的擴展屬性 }
package com.tianlang.po; public class ItemsQueryVo { //商品信息 private Items items; //爲了系統 可擴展性,對原始生成的po進行擴展 private ItemsCustom itemsCustom; public Items getItems() { return items; } public void setItems(Items items) { this.items = items; } public ItemsCustom getItemsCustom() { return itemsCustom; } public void setItemsCustom(ItemsCustom itemsCustom) { this.itemsCustom = itemsCustom; } }