構建框架

項羽齊發表於2018-03-14

構建京淘框架

1.1 框架介紹

1.1.1 框架的圖解

 

1.2 測試類程式碼實現

1.2.1 編輯Controller

@Controller

public class UserController {
@Autowired

private UserService userService;
@RequestMapping("/findAll")

public String findAll(Model model){
List
<User> userList = userService.findAll(); //將資料儲存到request域中 model.addAttribute("userList", userList); //request.setAttribute("userList", userList); //通過springMVC的檢視解析器來維護路徑 /WEB-INF/views/XXXXX.jsp return "userList"; } }

 

1.2.2 編輯Service

@Service
public class UserServiceImpl implements UserService {
//@Resource  

/**如果是單個專案用該註解可以實現功能,

     如果是分散式專案必須使用 @autowired

**/

@Autowired
private UserMapper userMapper;
//大型公司要求 如果是介面方法必須新增Override.方便後期維護
@Override
public List<User> findAll() {
return userMapper.findAll();

}
}

 

1.2.3 編輯Mapper

public interface UserMapper {
    //查詢全部使用者資訊
    List<User> findAll();
}

 

1.2.4 編輯jsp頁面

<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <title>使用者列表頁面</title>
    </head>
    <body>
        <table width="60%" algin="center" border="1">
            <tr align="center">
                <td colspan="5"><h2>使用者資訊</h2></td>
            </tr>
            <tr align="center">
                <td>ID</td>
                <td>姓名</td>
                <td>年齡</td>
                <td>性別</td>
            </tr>
            <c:forEach items="${userList}" var="u">
                <tr align="center">
                <td>${u.id}</td>
                <td>${u.name}</td>
                <td>${u.age}</td>
                <td>${u.sex}</td>
            </tr>
            </c:forEach>
        </table>
    </body>
</html>

 

1.3 配置SpringMVC

1.3.1 編輯applicationContext-mvc

<?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: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.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.xsd">
    
    <!--開啟包掃描 controller層  -->
    <context:component-scan base-package="com.jt.manage.controller"/>
    
    <!--開啟mvc註解  -->
    <mvc:annotation-driven/>
    
    <!--新增檢視解析器  內部資源檢視解析器-->
    <bean id="internalResource" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
    
    <!--配置檔案上傳解析器  後期維護-->

</beans>

 

1.3.2 編輯web.xml

<?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="jt-manage" version="2.5">
    <display-name>jt-manage</display-name>
    
    <!--配置前端控制器  -->
    <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/applicationContext*.xml</param-value>
        </init-param>
    </servlet>
    
    <!-- /*.action        url:localhost:8091/hello.action
        /*.do              url:localhost:8091/hello.do
        /  作用滿足restFul的格式  攔截請求和靜態資源  不會攔截.jsp頁面
         -->
    
    <!--注意事項 /會攔截靜態資原始檔  -->
    <servlet-mapping>
        <servlet-name>springmvc-web</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
    <!--解決POST亂碼問題 -->
    <filter>
        <filter-name>characterEncodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <!--指定字符集編碼  -->
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>characterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>

 

1.3.3 編輯Spring的配置檔案

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    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:component-scan base-package="com.jt"/>
    
    <!--動態的引入properties檔案  -->
    <!-- <context:property-placeholder location="classpath:/hello*.properties"/> -->
    <bean id="propertyPlaceholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations" >
            <list>
                <value>classpath:/properties/jdbc.properties</value>
            </list>
        </property>
    </bean>
    
    <!--配置資料來源  -->
    <!-- 配置連線池 -->
    <bean id="dataSource" class="com.jolbox.bonecp.BoneCPDataSource" destroy-method="close">
        <!-- 資料庫驅動 -->
        <property name="driverClass" value="${jdbc.driver}" />
        <!-- 相應驅動的jdbcUrl -->
        <property name="jdbcUrl" value="${jdbc.url}" />
        <!-- 資料庫的使用者名稱 -->
        <property name="username" value="${jdbc.username}" />
        <!-- 資料庫的密碼 -->
        <property name="password" value="${jdbc.password}" />
        <!-- 檢查資料庫連線池中空閒連線的間隔時間,單位是分,預設值:240,如果要取消則設定為0 -->
        <property name="idleConnectionTestPeriod" value="60" />
        <!-- 連線池中未使用的連結最大存活時間,單位是分,預設值:60,如果要永遠存活設定為0 -->
        <property name="idleMaxAge" value="30" />
        <!-- 每個分割槽最大的連線數 -->
        <property name="maxConnectionsPerPartition" value="150" />
        <!-- 每個分割槽最小的連線數 -->
        <property name="minConnectionsPerPartition" value="5" />
    </bean>
    
    
    <!-- 
        只要開啟了註解,需要在各個方法中新增註解
    <tx:annotation-driven/> 
    -->
    
    <!--定義事務管理器  
        要求id:transactionManager  -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    
    <!--定義事務通知  
        propagation="REQUIRED" 當前的資料庫操作必須新增事務
        spring中有預設的事務策略:
            1.如果是runtimeException或error則自動的回滾事務
            2.如果是檢查異常,則不管
        
        propagation="SUPPORTS" 表示事務支援的
        如果方法需要事務,則查詢方法也有事務
        如果方法不需事務.則查詢不會新增事務
        一個方法處理多個業務邏輯時用到!!!
    -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED" rollback-for="Exception"/>
            <tx:method name="update*" propagation="REQUIRED" rollback-for="Exception"/>
            <tx:method name="delete*" propagation="REQUIRED" rollback-for="Exception"/>
            <tx:method name="find*" propagation="SUPPORTS"  read-only="true"/>
            <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>
            <tx:method name="query*" propagation="SUPPORTS" read-only="true"/>
            <tx:method name="*"  propagation="SUPPORTS" read-only="true"/>
        </tx:attributes>
    </tx:advice>
    
    <!--配置事務切面  
        切入點表示式:控制業務層的所有方法
        execution(返回值型別 包名.類名.方法名(引數列表))
    -->
    <aop:config>
        <aop:pointcut expression="execution(* com.jt.manage.service..*.*(..))" id="pc"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="pc"/>
    </aop:config>

</beans>

 

1.4 配置Mybatis

1.4.1 配置mybatis配置檔案

編輯:mybatis-config.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>
    <!--開啟駝峰對映
        資料庫欄位  user_id ~~~~~~~~ 屬性userId 實現自動對映.
        注意:如果開啟駝峰自動的對映規則.則屬性和欄位必須按此規則定義
        
        Mybatis快取策略:
            一級快取 預設開啟的
            作用:在一個sqlSession內.實現資料共享
            
            二級快取 預設是關閉
            作用:如果開啟二級快取,則在sqlSessionFactory內實現資料共享
            A:獲取sqlSessionA    執行一次select * from user
            B:獲取sqlSessionB    該sqlSession將不會執行sql,直接從快取中獲取
      -->
    <settings>
        <!-- 開啟駝峰自動對映 -->
        <setting name="mapUnderscoreToCamelCase" value="true" />
        
        <!-- 二級快取的總開關,被redis替代 -->
        <setting name="cacheEnabled" value="false" />
    </settings>
    
</configuration>

 

1.4.2 配置對映檔案

<?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.jt.manage.mapper.UserMapper">
    <!--
        說明:
        1.namespace是對映檔案的唯一標識 不允許重複
        2.在配置時應該和mybatis的客戶端(Mapper介面檔案)路徑保持一致
        3.對映檔案中的Id,應該和介面方法名稱一一對應
     -->
    
    <!--根據分類ID查詢分類名稱  -->
    <select id="findAll" resultType="User">
        select * from user
    </select>
</mapper>

 

1.4.3 Spring整合Mybatis

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    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">
    
    <!--整合Mybatis  -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!--新增資料來源  -->
        <property name="dataSource" ref="dataSource"/>
        <!--引入mybatis的核心配置檔案  -->
        <property name="configLocation" value="classpath:/mybatis/mybatis-config.xml"/>
        <!--新增對映檔案  -->
        <property name="mapperLocations" value="classpath:/mybatis/mappers/*.xml"/>
        <!--配置別名包  -->
        <property name="typeAliasesPackage" value="com.jt.manage.pojo"></property>
    </bean>
    
    <!--為mapper介面生成代理物件 該代理物件是JDK生成的 -->
    <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.jt.manage.mapper"/>
    </bean>
</beans>

 

1.5 框架的終極教學

1.5.1 呼叫流程

1.tomcat啟動

2.載入web.xml配置檔案

當解析當前端控制器時開始例項容器 spring容器(springmvc-spring)

根據具體的掃描路徑開始載入配置檔案classpath:/spring/applicationContext*.xml

3.解析SpringMVC的配置檔案

applicationContext-mvc.xml----載入applicationContext-mybatis-----applicationCntext.xml.

tomcat已經載入全部的配置檔案.

在內部進行物件的建立和賦值.最終形成了完整的物件.

4.tomcat啟動完成後,可以通過url進行頁面訪問http://localhost:8091/findAll

被前端控制器攔截,交給對應的Controller進行資料處理.

 

補充知識

2.1 新增模板

2.1.1 新增spring模板

 

相關文章