分布式商城項目SSM整合

一月而、SSM 框架整合思路

一個項目中往往有三層即 Dao 層冲簿、 Service 層和 Web 層涣旨。 在整合之前氏仗, 分析一下 SSM 這三大框架的整合思路围辙。

1.1 dao 層

1我碟、 在 dao 層中, mybatis 整合 spring姚建, 通過 spring 管理 SqlSessionFactory矫俺、 mapper 代理對象。
在整合過程中, 需要 mybatis 和 spring 的整合包恳守。 整合包如下:

<!-- mybatis 與 spring 繼承 -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-spring</artifactId>
</dependency>

2考婴、 使用 mybatis 框架, 須創(chuàng)建該框架的核心配置文件——mybatis-config.xml催烘。
3沥阱、 使用 spring 框架, 須創(chuàng)建一個 spring-dao.xml 配置文件伊群, 該文件的內(nèi)容有:
1) 配置數(shù)據(jù)源考杉。
2) 需要讓 spring 容器管理 SqlsessionFactory, 其是單例存在的舰始。
3) 把 mapper 的代理對象放到 spring 容器中崇棠, 使用掃描包的方式加載 mapper 的代理對象。

1.2 Service 層

所有的 service 實現(xiàn)類都要放到 spring 容器中管理丸卷。 由 spring 創(chuàng)建數(shù)據(jù)庫連接池枕稀, 并由spring 來管理事務。

整合內(nèi)容 對應工程
Service 接口 ycshop-manager-interfaces
Service 實現(xiàn)類 ycshop-manager-service
Spring-service.xml 配置文件 ycshop-manager-service

1.3 Web 層(表現(xiàn)層)

表現(xiàn)層由 springmvc 來管理 controller谜嫉。 總的來說萎坷, springmvc 框架的核心配置文件的內(nèi)
容有:
1. 需要掃描 controller
2. 配置注解驅動
3. 配置視圖解析器

二 dao 整合

2.1 mybaits-config 配置文件

在項目 ycshop-manager-service 工程中創(chuàng)建 mybatis-config.xml 文件。


在這里插入圖片描述

內(nèi)容如下:

<?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>
    <!-- mybatis 的分頁插件沐兰, 這個可以沒有哆档。 但是這個配置文件必須要有 -->
    <plugins>
        <plugin interceptor="com.github.pagehelper.PageInterceptor">
            <property name="helperDialect" value="mysql" />
        </plugin>
    </plugins>
</configuration>

2.2 數(shù)據(jù)源配置文件 db.properties

將與數(shù)據(jù)庫的連接屬性配置到配置文件中, 方便修改住闯。 具體內(nèi)容如下:

jdbc.url=jdbc:mysql://47.100.x.x:3306/ycshop?characterEncoding=utf-8
jdbc.user=xxx
jdbc.pwd=aaa
jdbc.driver=com.mysql.jdbc.Driver
jdbc.initPoolSize=5
jdbc.maxPoolSize=10

其中47.100.x.x是數(shù)據(jù)庫url
ycshop是數(shù)據(jù)庫名
xxx是數(shù)據(jù)庫連接的用戶名
aaa是數(shù)據(jù)庫連接的密碼

2.3 spring-dao.xml 配置文件

在這個配置文件中配置數(shù)據(jù)庫連接池瓜浸、 SqlSessionFactory(Mybatis 的連接工廠)、 Mybatis
映射文件的包掃描器比原, 配置內(nèi)容如下:

<?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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    <!-- 引入外部配置文件(數(shù)據(jù)庫的連接方式) -->
    <context:property-placeholder location="classpath:db.properties" />
    <!-- 配置 C3P0 的數(shù)據(jù)源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.pwd}"></property>
        <property name="driverClass" value="${jdbc.driver}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="initialPoolSize" value="${jdbc.initPoolSize}"></property>
        <property name="maxPoolSize" value="${jdbc.maxPoolSize}"></property>
    </bean>
    <!-- mapper 配置 -->
    <!-- 讓 spring 管理 sqlsessionfactory 使用 mybatis 和 spring 整合包中的 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 數(shù)據(jù)庫連接池 -->
        <property name="dataSource" ref="dataSource" />
        <!-- 加載 mybatis 的全局配置文件插佛, 雖然這個全局配置文件是空的, 但是這個全 局配置文件是必不可少的 -->
        <property name="configLocation" value="classpath:mybatis-config.xml" />
        <!-- 掃描 sql 配置文件:mapper 需要的 xml 文件 -->
        <property name="mapperLocations" value="classpath:mapper/*.xml" />
    </bean>
    <!-- 配置 Mapper 掃描器 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="cn.yuechenc.manager.dao.mapper" />
    </bean>
</beans>

三 service 整合

3.1 spring-service.xml 配置文件

在此配置文件中配置所有的 service 包掃描以及事務管理配置春寿。 具體配置文件如下:

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
    <context:component-scan base-package="cn.yuechenc.manager.service"></context:component-scan>
    <!-- spring 聲明式事務管理控制 配置事務管理器類 -->
    <bean id="txManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>
    <!-- 配置事務增強(如何管理事務朗涩, 只讀、 讀寫...) -->
    <tx:advice id="txAdvice" transaction-manager="txManager">
        <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:attributes>
    </tx:advice>
    <!-- aop 配置绑改, 攔截哪些方法(切入點表達式, 攔截上面的事務增強) -->
    <aop:config>
        <aop:pointcut id="pt"
            expression="execution(* cn.yuechenc.manager.service.*.*(..))" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="pt" />
    </aop:config>
</beans>

3.2 web.xml 文件

在上面的整合過程中兄一, 編寫了兩個 spring 的配置文件:spring-dao.xml;spring-service.xml厘线。
那么那么程序是怎么知道這 2 個文件的呢? 這就需要在服務層初始化 spring 容器了出革, 方法是
在 ycshop-manager-service 工程下的 web.xml 文件中進行配置造壮。
內(nèi)容如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring-*.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

四 web 層(表現(xiàn)層) 整合

在ycshop-manager-web 工程中創(chuàng)建 spring-mvc.xml 文件。 如下:


在這里插入圖片描述

具體內(nèi)容如下:

<?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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

    <context:component-scan base-package="cn.yuechenc.manager.controller" />
    <mvc:annotation-driven />
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>

4.2 web.xml 文件

在 ycshop-manager-web 工程中創(chuàng)建 web.xml 配置文件。 文件內(nèi)容如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    version="3.1">
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
        <servlet-name>dispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <!-- spring-*.xml:表示所有以 spirng-開頭耳璧, 以.xml 結束的所有文件 classpath:表示類路徑下 -->
            <param-value>classpath:spring-*.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcherServlet</servlet-name><!-- 匹配所有以.do 結尾的請求 -->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

到此成箫, 開發(fā)框架就已盡整合完成, 并且完成了一個簡單的示例程序旨枯。 但是到目前為止蹬昌,
我們運行程序的時候是不會成功的。 原因很簡單攀隔, 在 web 層中并沒有對 servie 層(服務層
接口實現(xiàn)) 的引用皂贩。 而 service 層是獨立發(fā)布的, 而現(xiàn)在我們 web 層并不能引用到 service 服
務層的實現(xiàn)昆汹。
現(xiàn)在就需要使用到 dubbo 來進行服務的發(fā)布明刷。
下一篇中來進行 dubbo 服務的發(fā)布和引用。

?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末满粗,一起剝皮案震驚了整個濱河市辈末,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌映皆,老刑警劉巖挤聘,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異劫扒,居然都是意外死亡檬洞,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門沟饥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來添怔,“玉大人,你說我怎么就攤上這事贤旷」懔希” “怎么了?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵幼驶,是天一觀的道長艾杏。 經(jīng)常有香客問我,道長盅藻,這世上最難降的妖魔是什么购桑? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮氏淑,結果婚禮上勃蜘,老公的妹妹穿的比我還像新娘。我一直安慰自己假残,他們只是感情好缭贡,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般阳惹。 火紅的嫁衣襯著肌膚如雪谍失。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天莹汤,我揣著相機與錄音快鱼,去河邊找鬼。 笑死体啰,一個胖子當著我的面吹牛攒巍,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播荒勇,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼柒莉,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了沽翔?” 一聲冷哼從身側響起兢孝,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎仅偎,沒想到半個月后跨蟹,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡橘沥,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年窗轩,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片座咆。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡痢艺,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出介陶,到底是詐尸還是另有隱情堤舒,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布哺呜,位于F島的核電站舌缤,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏某残。R本人自食惡果不足惜国撵,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望玻墅。 院中可真熱鬧卸留,春花似錦、人聲如沸椭豫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽赏酥。三九已至喳整,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間裸扶,已是汗流浹背框都。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留呵晨,地道東北人魏保。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像摸屠,于是被迫代替她去往敵國和親谓罗。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容