ssm框架各層解析
我們在使用ssm搭建框架的使用,首先要知道有哪幾層,以及各層之間有什麼作用,這樣我們搭建框架才可以事半功倍。主要對下面的四層簡單介紹一下:
1:持久層:dao層(mapper)
Dao層:主要是做資料持久層的工作,負責和資料庫進行聯絡的一些任務在此封裝,dao層的設計首先是dao的介面,配置資料來源,以及有關資料庫連線的引數在spring的配置檔案中進行配置。
2:業務層:service層
Service層:主要負責業務模組的邏輯應用設計;先設計接了,在設計其實現的類,業務邏輯實現具體要呼叫已定義的dao層的介面。
Service層邏輯設計
Service層建立在dao層之上,建立dao層之後才可以建立service層,而service層又在controller層之下,因而service層應該既要呼叫dao層的介面,又要提供介面給controller層的類來呼叫,它正好處在一箇中間的位置,每個模型都有一個service介面,每個介面分別封裝各自的業務處理的方法。
3:表現層:controller層
Controller層:主要負責具體的業務模組流程的控制,在此層要呼叫service層的介面來控制業務流程。
4:View層
View層:主要和控制層緊密結合,主要負責前臺jsp頁面的表示。
各個層之間的聯絡:
DAO層,Service層這兩個層次都可以單獨開發,互相的耦合度很低,完全可以獨立進行,這樣的一種模式在開發大專案的過程中尤其有優勢,Controller,View層因為耦合度比較高,因而要結合在一起開發,但是也可以看作一個整體獨立於前兩個層進行開發。這樣,在層與層之前我們只需要知道介面的定義,呼叫介面即可完成所需要的邏輯單元應用,一切顯得非常清晰簡單。
下面結合ssm框架說明
1:整合dao層
Mybatis配置檔案mybatis-config.xml
配置別名:用於批量掃描pojo包
不需要配置mapper標籤,但一定要保證mapper.java 和mapper.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="cn.itcast.ssm.po"/>
</typeAliases>
</configuration>
2:Spring配置檔案applicationContext-dao.xml
主要配置內容:資料來源 sqlSessionFactory mapper掃描器
這裡使用sqlSessionFactoryBeanName屬性是因為如果配置的是sqlSessionFactory屬性,將不會先載入資料庫配置檔案及資料來源配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.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>
<!-- 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="cn.itcast.ssm.mapper"></property>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
</bean>
</beans>
3:建立mapper.java一般不動原始生成的po類,而是將原始類進行整合vo類
public interface ItemsMappperCustom{
public List<ItemsCustom> findItemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}
建立pojo類對應的mapper.xml
<mapper namespace="test.ssm.mapper.ItemsMappperCustom">
<select id="findItemsList" parameterTyep="test.ssm.po.ItemsQueryVo" resultType="test.ssm.po.ItemsCustom">
select items.* from items
where items.name like '%${itemsCustom.name}%'
4:整合service層目標:讓spring管理service介面,定義service介面eg:ItemsService
public interfae ItemsService{
public List<ItemsCustom> findItemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}
定義serviceImpl實現類 :因為在applicationContext-dao.xml中已經使用了mapper掃描器,這裡就可以使用通過註解的方式將itemMapperCustoms自定注入
public class ItemsServiceImpl implements ItemsService{
@Autowired
private ItemsMapperCustom itemsMapperCustom;
@Override
public List<ItemsCustom> findItemsList(ItemsQueryVo itemsQueryVo) throws Exception{
return itemsMapperCustom.findItemsList(itemsQueryVo);
}
}
在spring容器配置service:applicationContext-service.xml在此檔案中配置service。
<bean id="itemsService" class="test.ssm.service.impl.ItemsSrviceImpl"/>
5:事物控制
在applicationContext-transaction.xml中使用spring宣告式事務控制方法,對mybatis操作資料庫事物控制,spring使用jdbc的事物控制類是DataSourceTransactionManager
因為操作了資料庫需要事物控制,所以需要配置資料來源;定義了切面
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
<!-- 事務管理器 對mybatis操作資料庫事務控制,spring使用jdbc的事務控制類 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 資料來源在 dataSource在applicationContext-dao.xml中已經配置-->
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 通知 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 傳播行為 -->
<tx:method name="save*" propagation="REQUIRED"/>
<tx:method name="delete*" propagation="REQUIRED"/>
<tx:method name="insert*" 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="select*" propagation="SUPPORTS" read-only="true"/>
</tx:attributes>
</tx:advice>
<!-- aop -->
<aop:config>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* cn.itcast.ssm.service.impl.*.*(..))"/>
</aop:config>
</beans>
6:整合springmvc
建立springmvc.xml檔案,配置處理器對映器 、 介面卡、檢視解析器
<context:component-scan base-package="cn.itcast.ssm.controller"></context:component-scan>
<!-- 使用 mvc:annotation-driven 載入註解對映器和註解介面卡配置-->
<mvc:annotation-driven></mvc:annotation-driven>
<!-- 檢視解析器 解析jsp解析,預設使用jstl標籤,classpath下的得有jstl的包
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 配置jsp路徑的字首 -->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!-- 配置jsp路徑的字尾 -->
<property name="suffix" value=".jsp"/>
</bean>
7:配置前端控制器在web.xml中加入如下內容:
contextConfigLocation配置springmvc載入的配置檔案(配置處理器對映器、介面卡等等) ,如果不配置contextConfigLocation,預設載入的是/WEB-INF/servlet名稱-serlvet.xml(springmvc-servlet.xml)在url-pattern中 ,填入*.action,表示訪問以.action結尾 由DispatcherServlet進行解析
填入/,所有訪問的地址都由DispatcherServlet進行解析,對於靜態檔案的解析需要配置不讓DispatcherServlet進行解析,使用此種方式可以實現RESTful風格的url
<!-- springmvc前端控制器 -->
<servlet>
<servlet-name>springmvc</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</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>
同時在web.xml中,新增spring容器監聽器,載入spring容器
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/spring/applicationContext-*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
<listener>
8:編寫Controller(Handler)
@Congtroller
@RequestMapping("/items") //窄化路徑
public class ItemsController {
@Autowired
private ItemsService itemsService;
//商品查詢
@RequestMapping("/queryItems") //實際網址後面跟了.action
public ModelAndView queryItems(HttpServletRequest request) throws Exception {
List<ItemsCustom> itemsList = itemsService.findItemsList(null);
//返回ModelAndView
ModelAndView modelAndView = new ModelAndView();
//相當於request的setAttribute,在jsp頁面中通過itemsList取資料
modelAndView.addObject("itemsList",itemsList);
return modelAndView;
}
}
9:編寫JSP頁面
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 }/items/editItems.action?id=${item.id}">修改</a></td>
</tr>
</c:forEach>