整合目標:控制層採用springmvc、持久層使用mybatis實現html
整合思路:前端
Dao層:java
一、SqlMapConfig.xml,空文件便可,可是須要文件頭。mysql
二、applicationContext-dao.xmlweb
a) 數據庫鏈接池spring
b) SqlSessionFactory對象,須要spring和mybatis整合包下的。sql
c) 配置mapper文件掃描器。數據庫
Service層:apache
一、applicationContext-service.xml包掃描器,掃描@service註解的類。spring-mvc
二、applicationContext-trans.xml配置事務。
Controller層:
一、Springmvc.xml
a) 包掃描器,掃描@Controller註解的類。
b) 配置註解驅動
c) 配置視圖解析器
Web.xml文件:
一、配置spring
二、配置前端控制器。
詳細配置以下:
1、SSM框架整合
1.一、整合思路
從底層整合起,也就是先整合mybatis與spring,而後在編寫springmvc。
1.二、開發需求
查詢商品列表(從數據庫中查詢)
1.三、建立web工程
如今ssm的工程建立就有區別於原先的dao、service、web這樣的三層目錄了,如今是mapper、service、controller這樣的目錄,mapper就至關於之前的dao、controller至關於之前的web,改變了名稱而已。不要所以看不懂了。
1.四、添加jar包
導包
1.五、開始整合mapper(mybatis與spring的整合)
直接上代碼。
1.5.一、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> <!-- 取別名,或者別的其餘全局配置信息,就在這裏編寫 -->(逆向工程不須要起別名) <typeAliases> <!-- 別名爲類名首字母大小寫均可以 --> <package name="com.wuhao.ms.domain"/> </typeAliases> <!-- 原先這裏還有鏈接數據庫的一些配置,與spring整合後,都交由spring來管理 --> <!-- 加載mapper映射文件,使用通用的配置 --> <mappers> <package name="com.wuhao.ssm.mapper"/> </mappers> </configuration>
1.5.二、applicationContext-dao.xml的配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <!-- 加載配置文件 --> <context:property-placeholder location="classpath:db.properties" /> <!-- 數據庫鏈接池 --> <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="10" /> <property name="maxIdle" value="5" /> </bean> <!-- 配置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"> <!-- 配置Mapper掃描包 --> <property name="basePackage" value="cn.itcast.ssm.mapper" /> </bean> </beans>
這裏須要注意一點,在指定mybatis的全局配置文件的路徑的時候,也就是在value="classpath:SqlMapConfig.xml"時,若是在建立的config的配置文件目錄下還有層級目錄,則這裏須要加上,好比,config下面分爲了mybatis和spring,那麼這裏就須要寫value="classpath:mybatis/SqlMapConfig.xml",看根據你本身的需求來編寫
1.5.三、db.properties配置
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/springmvc?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root
1.5.四、開發mapper,將逆向工程生成的添加進來
注意:Mapper開發時,先要根據需求進行分析,是否匹配逆向工程生成的代碼,若是匹配成功,則不須要再開發mapper;若是不匹配,再去擴展一個新的mapper接口和mapper映射文件來處理該需求,通俗點講,就是逆向工程生成的mapper接口中的定義的功能是否知足咱們開發的需求,由於逆向工程生成的都是對於單表進行操做的,而咱們有時候須要的是更復雜的查詢,因此若是有須要咱們在本身建立mapper接口和mapper映射文件,其實就是擴展功能。
1.六、整合service
添加applicationContext-service.xml配置文件,用來處理事務,
applicationContext-service.xml:若是不懂其中的代碼的意思,就查看以前講解spring管理事務的文章。這裏直接複製粘帖便可,修改一些包名稱等
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <!-- 事務管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <!-- 數據源 --> <property name="dataSource" ref="dataSource" /> </bean> <!-- 通知 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!-- 傳播行爲 --> <tx:method name="save*" propagation="REQUIRED" /> <tx:method name="insert*" propagation="REQUIRED" /> <tx:method name="delete*" propagation="REQUIRED" /> <tx:method name="update*" propagation="REQUIRED" /> <tx:method name="find*" propagation="SUPPORTS" read-only="true" /> <tx:method name="get*" propagation="SUPPORTS" read-only="true" /> <tx:method name="query*" propagation="SUPPORTS" read-only="true" /> </tx:attributes> </tx:advice> <!-- 切面 --> <aop:config> <aop:advisor advice-ref="txAdvice" pointcut="execution(* cn.itcast.ssm.service.*.*(..))" /> </aop:config> </beans>
1.七、整合controller
也就是使用springmvc了。很是簡單。
1.7.一、在web.xml中配置前端控制器DispatcherServlet
<?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://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>springmvc-web</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <!-- 配置spring --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring/applicationContext*.xml</param-value> </context-param> <!-- 使用監聽器加載Spring配置文件 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 配置SrpingMVC的前端控制器 --> <servlet> <servlet-name>springmvc-web</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring/springmvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc-web</servlet-name> <!-- 配置全部以action結尾的請求進入SpringMVC --> <url-pattern>*.action</url-pattern> </servlet-mapping> </web-app>
1.7.二、配置springmvc.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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" 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"> <!-- 掃描@Controler @Service --> <context:component-scan base-package="com.itheima"/> <!-- 處理器映射器 --> <!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/> --> <!-- 處理器適配器 --> <!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/> --> <!-- 註解驅動 --> <mvc:annotation-driven conversion-service="conversionServiceFactoryBean"/> <!-- 配置Conveter轉換器 轉換工廠 (日期、去掉先後空格)。。 --> <bean id="conversionServiceFactoryBean" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"> <!-- 配置 多個轉換器--> <property name="converters"> <list> <bean class="com.itheima.springmvc.conversion.DateConveter"/> </list> </property> </bean> <!-- 視圖解釋器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> </beans>
1.八、整合spring配置文件
就是將全部的spring的配置文件都進行加載啓動。也就是在web.xml中配置spring的監聽器
1.九、總結全部的配置以下圖
1.十、部署測試
1.10.一、查詢商品列表(從數據庫中查詢)
一、編寫service層
ItemsService 接口
package com.itheima.springmvc.service; import java.util.List; import com.itheima.springmvc.pojo.Items; public interface ItemService { //查詢商品列表 public List<Items> selectItemsList(); public Items selectItemsById(Integer id); //修改 public void updateItemsById(Items items); }
ItemsServiceImpl 實現類 使用註解開發
package com.itheima.springmvc.service; import java.util.Date; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.itheima.springmvc.dao.ItemsMapper; import com.itheima.springmvc.pojo.Items; @Service public class ItemServiceImpl implements ItemService { @Autowired private ItemsMapper itemsMapper; //查詢商品列表 public List<Items> selectItemsList(){ return itemsMapper.selectByExampleWithBLOBs(null);(檢索字段中存在大字段類型,例如text字段類型) } public Items selectItemsById(Integer id){ return itemsMapper.selectByPrimaryKey(id); } //修改 public void updateItemsById(Items items){ items.setCreatetime(new Date()); itemsMapper.updateByPrimaryKeyWithBLOBs(items); } }
二、編寫controller層
ItemsController
package com.itheima.springmvc.controller; import java.util.ArrayList; import java.util.Date; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.HttpRequestHandler; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.ModelAndView; import com.itheima.springmvc.pojo.Items; import com.itheima.springmvc.pojo.QueryVo; import com.itheima.springmvc.service.ItemService; @Controller public class ItemController { @Autowired private ItemService itemService; //入門程序 第一 包類 + 類包 + 方法名 @RequestMapping(value = "/item/itemlist.action") public ModelAndView itemList(){ //從Mysql中查詢 List<Items> list = itemService.selectItemsList(); ModelAndView mav = new ModelAndView(); //數據 mav.addObject("itemList", list); mav.setViewName("itemList"); return mav; } //去修改頁面 入參 id @RequestMapping(value = "/itemEdit.action") // public ModelAndView toEdit(@RequestParam(value = "id",required = false,defaultValue = "1") Integer idaaq, public ModelAndView toEdit(Integer id, HttpServletRequest request,HttpServletResponse response ,HttpSession session,Model model){ //Servlet時代開發 // String id = request.getParameter("id"); //查詢一個商品 // Items items = itemService.selectItemsById(Integer.parseInt(id)); Items items = itemService.selectItemsById(id); ModelAndView mav = new ModelAndView(); //數據 mav.addObject("item", items); mav.setViewName("editItem"); return mav; } //提交修改頁面 入參 爲 Items對象 @RequestMapping(value = "/updateitem.action") // public ModelAndView updateitem(Items items){ public ModelAndView updateitem(QueryVo vo){ //修改 itemService.updateItemsById(vo.getItems()); ModelAndView mav = new ModelAndView(); mav.setViewName("success"); return mav; } }
三、添加jsp頁面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>查詢商品列表</title> </head> <body> <form action="${pageContext.request.contextPath }/item/queryItem.action" method="post"> 查詢條件: <table width="100%" border=1> <tr> <td><input type="submit" value="查詢"/></td> </tr> </table> 商品列表: <table width="100%" border=1> <tr> <td>商品名稱</td> <td>商品價格</td> <td>生產日期</td> <td>商品描述</td> <td>操做</td> </tr> <c:forEach items="${itemsList }" var="item"> <tr> <td>${item.name }</td> <td>${item.price }</td> <td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td> <td>${item.detail }</td> <td><a href="${pageContext.request.contextPath }/editItems.do?id=${item.id}">修改</a></td> </tr> </c:forEach> </table> </form> </body> </html>
四、測試http://localhost:8080/springmvc-mybatis/item/itemlist.action