Spring框架-7(搭建SSM)

Spring系列文章

Spring框架-1(基礎(chǔ))
Spring框架-2(IOC上)
Spring框架-3(IOC下)
Spring框架-4(AOP)
Spring框架-5(JDBC模板&Spring事務(wù)管理)
Spring框架-6(SpringMvc)
Spring框架-7(搭建SSM)
Spring框架-8(SpringMVC2)

前面學(xué)習(xí)了spring和SpringMvc缰盏,掌握了一些基礎(chǔ)知識意推,那么現(xiàn)在我們來整合一下ssm钦无。使用一個簡單的小項目來使用一下绕德。下面是整合ssm的一些基礎(chǔ):


ssm.png

先附上Demo地址

搭建SSM

寫好后的目錄結(jié)構(gòu):


目錄結(jié)構(gòu).png

這里的所有的配置文件我單獨創(chuàng)建了一個config。所有的配置文件doub放在這里怀各,當(dāng)然我在web.xml中這樣是無法訪問的。我們需要通過idea吧這個目錄設(shè)置為resource目錄。點擊config目錄右鍵戒祠,如圖:

配置config目錄.png

這樣在web.xml中就能訪問到我們的配置文件了

創(chuàng)建項目導(dǎo)入jar包

使用IDEA創(chuàng)建一個Web項目。


創(chuàng)建項目

導(dǎo)入jar包

jar1.png
jar2.png

Dao層配置文件

數(shù)據(jù)庫文件速种,使用mybatis逆向工程生成mapper

數(shù)據(jù)庫表結(jié)構(gòu)
數(shù)據(jù)庫.png
逆向工程生成所用的東西
如圖.png

創(chuàng)建SqlMapConfig.xml

mybatis核心配置文件

<?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>
    
</configuration>

創(chuàng)建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"/>
    <!-- 數(shù)據(jù)庫連接池 -->
    <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>

    <!-- 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:SqlMapConfig.xml"/>
    </bean>

    <!-- 配置Mapper掃描器 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.zhong.dao"/>
    </bean>

</beans>

通配符配置的db.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://39.108.184.253:3306/zTest
jdbc.username=root
jdbc.password=123456

Service層配置文件

ApplicationContext-trans.xml 事務(wù)

<?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">

    <!-- 事務(wù)管理器 -->
    <bean id="transactionManager"
          class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 數(shù)據(jù)源 -->
        <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:attributes>
    </tx:advice>

    <!-- 切面 -->
    <aop:config>
        <aop:advisor advice-ref="txAdvice"
                     pointcut="execution(* com.zhong.service.*.*(..))"/>
    </aop:config>

</beans>

ApplicationContext-service.xml @Service注解掃描

<?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">

    <!-- @Service掃描 -->
    <context:component-scan base-package="com.zhong.service"></context:component-scan>
</beans>

controller層配置文件

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">

    <!-- @Controller注解掃描 -->
    <context:component-scan base-package="com.zhong.controller"></context:component-scan>

    <!-- 注解驅(qū)動:
            替我們顯示的配置了最新版的注解的處理器映射器和處理器適配器 -->
    <mvc:annotation-driven ></mvc:annotation-driven>

    <!-- 配置視圖解析器 
    作用:在controller中指定頁面路徑的時候就不用寫頁面的完整路徑名稱了,可以直接寫頁面去掉擴展名的名稱
    -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 真正的頁面路徑 =  前綴 + 去掉后綴名的頁面名稱 + 后綴 -->
        <!-- 前綴 -->
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <!-- 后綴 -->
        <property name="suffix" value=".jsp"></property>
    </bean>


</beans>

web.xml配置

<?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">
    <!-- 加載spring容器 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:ApplicationContext-*.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- 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:SpringMvc.xml</param-value>
        </init-param>
        <!-- 在tomcat啟動的時候就加載這個servlet -->
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springMvc</servlet-name>
        <url-pattern>*.action</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>
</web-app>

流程

  1. tomcat啟動時首先加載web.xml文件
  2. web.xml中加載spring的所有的ApplicationContext開頭的配置文件
  3. 在所有的ApplicationContext中再加載所有的db.properties姜盈,SqlMapConfig.xml文件
  4. web.xml中加載SpringMvc.xml

加載完成,我們的ssm框架就能跑起來了配阵。

寫一個測試

需求

請求http://localhost:8080/list.action查詢數(shù)據(jù)庫數(shù)據(jù)馏颂,返回jsp頁面顯示出來

1.編寫jsp

商品列表:
<table width="100%" border=1>
<tr>
    <td>商品名稱</td>
    <td>商品價格</td>
    <td>生產(chǎn)日期</td>
    <td>商品描述</td>
    <td>操作</td>
</tr>
<c:forEach items="${itemList }" 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 }/itemEdit.action?id=${item.id}">修改</a></td>

</tr>
</c:forEach>

</table>

2.編寫service

使用mybatis查詢數(shù)據(jù)庫

@Service
public class ItemsServiceImpl implements ItemsService {

    @Autowired
    private ItemsMapper itemsMapper;

    @Override
    public List<Items> list() throws Exception {
        //如果不需要任何查詢條件,直接將example對象new出來即可
        ItemsExample example = new ItemsExample();
        List<Items> list = itemsMapper.selectByExampleWithBLOBs(example);
        return list;
    }

}

3.編寫controller

springMvc中默認(rèn)支持的參數(shù)類型:也就是說在controller方法中可以加入這些參數(shù)如下的Model示血,也可以不加, 加不加看自己需不需要,都行.HttpServletRequest,HttpServletResponse,HttpSession,Model

@Controller
public class ItemsController {

    @Autowired
    private ItemsService itmesService;
    
    @RequestMapping("/list")
    public String itemsList(Model model) throws Exception {
        List<Items> list = itmesService.list();
        //Model模型:模型中放入了返回給頁面的數(shù)據(jù)
        //model底層其實就是用的request域來傳遞數(shù)據(jù),但是對request域進行了擴展.
        model.addAttribute("itemList", list);
        //如果springMvc方法返回一個簡單的string字符串,那么springMvc就會認(rèn)為這個字符串就是頁面的名稱
        return "itemList";
    }

}

4.測試

配置tomcat訪問http://localhost:8080/list.action,注意在前面配置了.action所以必須在后面加上.action救拉。

結(jié)果:成功

效果.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末矾芙,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子近上,更是在濱河造成了極大的恐慌剔宪,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件壹无,死亡現(xiàn)場離奇詭異葱绒,居然都是意外死亡,警方通過查閱死者的電腦和手機斗锭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門地淀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人岖是,你說我怎么就攤上這事帮毁。” “怎么了豺撑?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵烈疚,是天一觀的道長。 經(jīng)常有香客問我聪轿,道長爷肝,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任陆错,我火速辦了婚禮灯抛,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘音瓷。我一直安慰自己对嚼,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布绳慎。 她就那樣靜靜地躺著纵竖,像睡著了一般。 火紅的嫁衣襯著肌膚如雪偷线。 梳的紋絲不亂的頭發(fā)上磨确,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機與錄音声邦,去河邊找鬼乏奥。 笑死,一個胖子當(dāng)著我的面吹牛亥曹,可吹牛的內(nèi)容都是我干的邓了。 我是一名探鬼主播恨诱,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼骗炉!你這毒婦竟也來了照宝?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤句葵,失蹤者是張志新(化名)和其女友劉穎厕鹃,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體乍丈,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡剂碴,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了轻专。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片忆矛。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖请垛,靈堂內(nèi)的尸體忽然破棺而出催训,到底是詐尸還是另有隱情,我是刑警寧澤宗收,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布漫拭,位于F島的核電站,受9級特大地震影響镜雨,放射性物質(zhì)發(fā)生泄漏嫂侍。R本人自食惡果不足惜儿捧,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一荚坞、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧菲盾,春花似錦颓影、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至临谱,卻和暖如春璃俗,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背悉默。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工城豁, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人抄课。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓唱星,卻偏偏與公主長得像雳旅,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子间聊,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,792評論 2 345

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