Maven 构建SSM框架配置

        对于maven的项目构建和依赖管理在这里先不做详细配置介绍,之后应该会做详细的补充,今天先写写在maven聚合工程中对于SSM的配置整合(提到的其他配置暂不做说明),这里也会贴出整合之后的配置代码,整合过程一笔带过:


整合思路:1、Dao层的整合   2、service层的整合   3、表现层的整合


1、对于Dao层的整合,无非就是对数据库的操作配置,整合之前,在mybatis操作数据库的配置文件中(SqlMapConfig.xml)可以配置通过db.propertie配置数据库连接池(JDBC DBCP C3P0 Druid等),扫描mapper配置文件,

配置SqlSessionFactory,对pojo起别名等(使用逆向工程生成pojo和mapper不必要再起别名)

在spring整合mybatis后,对于mybatis的配置,我们只需在构建项目的dao层中的resourses中配置SqlMapConfig.xml文件即可(是否起别名看个人喜好或者使用逆向工程没必要起),因为对于数据库的操作被spring接管,所以我们在dao层中的resourses中配置applicationContext-dao.xml文件,在此文件中配置dataSource(通过db.properties),sqlSessionFactory,扫描mapper。到此,Dao层的整合大致完善。

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.xxx.xxx.pojo"/>

    </typeAliases>

</configuration>

applicationContext-dao.xml文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

            xmlns="http://www.springframework.org/schema/beans"

            xmlns:context="http://www.springframework.org/schema/context"

            xsi:schemaLocation="http://www.springframework.org/schema/beans

            http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

           http://www.springframework.org/schema/context

           http://www.springframework.org/schema/context/spring-context-4.2.xsd ">

<!-- db.properties -->

<!-- 数据源 -->

<context:property-placeholder location="classpath:mybatis/db.properties"/>
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">

          <property name="driverClassName" value="${jdbc.driver}" />

          <property name="url" value="${jdbc.url}" />

         <property name="username" value="${jdbc.username}" />

         <property name="password" value="${jdbc.password}" />

</bean>

<!-- 配置SqlSessionfactory -->

<bean class="org.mybatis.spring.SqlSessionFactoryBean">

         <property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml"></property>

         <property name="dataSource" ref="dataSource"></property>

</bean>

<!-- 配置Mapper扫描 -->

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

           <property name="basePackage" value="com.xxx.xxx.mapper"></property>

</bean>

</beans>


2、对于Service层的整合,就是通过spring对service的扫描,但为了脉络的清晰,我们在聚合工程中service层的sources中配置applicationContext-service.xml,在此配置文件中除了约束就是我们对service层的扫描。

其外由于service层是我们操作CURD的层面,所以在service层我们需要一个事务,进而我们就再次配置applicationContext-tx.xml(配置事务管理器,通知,切面等)

applicationContext-service.xml文件

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

            xmlns="http://www.springframework.org/schema/beans"

            xmlns:context="http://www.springframework.org/schema/context"

            xsi:schemaLocation="http://www.springframework.org/schema/beans

            http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

            http://www.springframework.org/schema/context

            http://www.springframework.org/schema/context/spring-context-4.2.xsd ">

<context:component-scan base-package="com.xxx.xxx.service"></context:component-scan>

</beans>

applicationContext-tx.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.2.xsd

          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd

          http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd               http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

          http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.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="add*" propagation="REQUIRED" />

              <tx:method name="create*" 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="select*" 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.xxx.xxx.service.*.*(..))" />

</aop:config>

</beans>


3、对于表现层的整合,我们体现在springmvc.xml中,其中有对controller的扫描;注解驱动加载处理器映射器,处理器适配器,视图解析器(配置前后缀可简化action返回某个jsp代码),配置拦截与放行,异常处理器,上传文件解析器等

springmvc.xml文件

<?xml version="1.0" encoding="UTF-8"?>

<beans

           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

           xmlns="http://www.springframework.org/schema/beans"

            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.2.xsd

           http://www.springframework.org/schema/context

           http://www.springframework.org/schema/context/spring-context-4.2.xsd

           http://www.springframework.org/schema/mvc

            http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd ">

<context:component-scan base-package="com.xxx.xxx.controller"></context:component-scan>

<!--这个是我上传文件的路径properties文件-->

<context:property-placeholder location="classpath:spring/conf.properties"/>

<!-- 注解驱动可以自动加载最新的处理器映射器和处理器适配器 -->

<mvc:annotation-driven/>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        < property name="prefix" value="/WEB-INF/"></property>

        <property name="suffix" value=".jsp"></property>

</bean>

<!-- 释放被拦截的静态资源 -->

<mvc:default-servlet-handler/>

<mvc:interceptors>

         <mvc:interceptor>

                <mvc:mapping path="/**"/>

                 <mvc:exclude-mapping path="/user/**"/>(窄划路径下放行)

                  <mvc:exclude-mapping path="/xxx/**"/>(窄划路径下放行)

                   <mvc:exclude-mapping path="/css/**"/>

                  <mvc:exclude-mapping path="/js/**"/>

                    <mvc:exclude-mapping path="/img/**"/>

                    <mvc:exclude-mapping path="/fonts/**"/>

         <bean class="com.xxx.xxx.interceptor.xxxInterceptor"></bean>(interceptor拦截)

         </mvc:interceptor>

</mvc:interceptors>

<bean class="com.jnmd.exception.HandlerException"></bean>(异常处理)

<!--文件上传-->

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

        <property name="maxUploadSize" value="512000"></property>

</bean>

</beans>


最后就是web.xml的配置,作为项目的核心配置,需要配置springmvc前端控制器DispatcherServlet,再通过指定springmvc在classpath的路径加载springmvc;还需加载spring容器并指定applicationContext在classpath下的路径;

另外,web.xml中还需配置解决post乱码的filter

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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">

<display-name></display-name>

<welcome-file-list>

        <welcome-file>index.jsp</welcome-file>

</welcome-file-list>

<!-- 可以解决POST乱码问题 -->

<filter>

        <filter-name>encoding</filter-name>

        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>

       <!-- 设置编码参是UTF8 -->

        <init-param>

              <param-name>encoding</param-name>

              <param-value>UTF-8</param-value>

       </init-param>

</filter>

<filter-mapping>

         <filter-name>encoding</filter-name>

          <url-pattern>/*</url-pattern>

</filter-mapping>

<servlet>

        <servlet-name>dispatcherServlet</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>

      <load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

           <servlet-name>dispatcherServlet</servlet-name>

          <url-pattern>/</url-pattern>

</servlet-mapping>

<!-- 两者相结合,可以将Spring配置web容器中 -->

<listener>

      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

</listener>

<context-param>

        <param-name>contextConfigLocation</param-name>

      <param-value>classpath:spring/applicationContext-*.xml</param-value>

</context-param>

</web-app>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,222评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,455评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,720评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,568评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,696评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,879评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,028评论 3 409
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,773评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,220评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,550评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,697评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,360评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,002评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,782评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,010评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,433评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,587评论 2 350

推荐阅读更多精彩内容