SSM整合

作者: _NineSun旭_ | 来源:发表于2019-02-26 20:08 被阅读0次

    springmvc + spring + mybatis 配置整合

    eclipse里创建一个web project

    导入整合需要的jar包

    ...

    在WEB-INF/web.xml中以xml配置方式引入spring框架

    <!-- 在项目中导入spring框架 start-->
    <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>
    <!-- 在项目中导入spring框架 end-->
    
    

    在WEB-INF/web.xml中以xml配置方式引入springMVC框架

    <!-- 在项目中导入springmvc框架 start-->
    <servlet>
        <servlet-name>springmvcservlet</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>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>springmvcservlet</servlet-name>
        <url-pattern>*.a</url-pattern>
    </servlet-mapping>
    <!-- 在项目中导入springmvc框架 end-->
    
    

    创建一个源码目录(config)专门用来存放所有配置文件

    ...

    创建springmvc的配置文件springmvc.xml

    1. 在config目录下创建xml文件,名字叫springmvc.xml
    2. 在springmvc.xml文件中加入,根标签beans同时加入命名空间
    <?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:mvc="http://www.springframework.org/schema/mvc"
        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.3.xsd 
            http://www.springframework.org/schema/mvc 
            http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd 
            http://www.springframework.org/schema/context 
            http://www.springframework.org/schema/context/spring-context-4.3.xsd ">
    </beans>
    
    
    1. 在springmvc.xml文件的beans标签下加入子标签bean,作用是所有映射方法返回json时,中文不乱码,在Controller中的@RequestMapping中添加属性:produces="application/json;charset=utf-8"返回时不会乱码。
        <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">    
            <property name="messageConverters">    
                <list>    
                <bean class="org.springframework.http.converter.StringHttpMessageConverter">    
                    <property name="supportedMediaTypes">    
                        <list>
                            <value>text/plain;charset=UTF-8</value>
                            <value>text/html;charset=UTF-8</value>
                        </list>
                    </property>
                </bean>
                </list>
            </property>
        </bean>
    
    
    1. 在springmvc.xml文件的beans标签下加入子标签context:component-scan,作用通过指定的包,和包里被注解@Controller的类,来确定哪些是controller
    <!-- 这里让扫描controller,指定controller的包  -->
    <context:component-scan base-package="com.xx.ssmdemo.phone.controller"></context:component-scan>
    <context:component-scan base-package="com.xx.ssmdemo.pc.controller"></context:component-scan>
    
    
    1. 在springmvc.xml文件的beans标签下加入子标签mvc:annotation-driven,作用是启动跟注解相关的代理(如果不做这步,那么上面第3步是不起作用的),解决跨域问题时(@CrossOrigin(origins={""},maxAge=3600)//跨域访问,代表任意域名都能访问我)也需要添加此配置
    <mvc:annotation-driven />
    
    
    1. 在springmvc.xml文件的beans标签下加入子标签bean,作用是告诉springmvc框架,视图文件所在的路径,和扩展名
        <!-- 视图解析器,解析jsp解析 -->
        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <!-- 配置视图文件所在路径 -->
            <property name="prefix" value="/WEB-INF/jsp/"/>
            <!-- 配置视图文件的扩展名 -->
            <property name="suffix" value=".jsp"/>
        </bean>
    
    

    创建连接数据库的参数所在的属性文件,起名为db.properties

    jdbc.driver=com.mysql.jdbc.Driver
    jdbc.url=jdbc:mysql://localhost:3306/elm?characterEncoding=utf-8
    jdbc.username=root
    jdbc.password=123456
    
    

    创建mybatis的配置文件,起名为mybatis.xml

    <!--
    由于数据库连接部分,由spring框架的ioc进行管理,所以在这个配置文件跟数据库连接相关的配置省略
    只剩下,声明程序里用到的mapper.xml的配置,即下面的mappers标签
    -->
    <?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>
        <mappers>
            <mapper resource="com/xx/ssmdemo/pc/mapper/SystemMapper.xml"/>
            <mapper resource="com/xx/ssmdemo/pc/mapper/UserMapper.xml"/>
        </mappers>
    </configuration>
    
    

    创建跟spring框架集成一起的数据库连接配置文件,起名为spring-db.xml

    1. 在config目录下创建xml文件,名字叫spring-db.xml
    2. 在spring-db.xml文件中加入,根标签beans同时加入命名空间
    <?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: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-4.3.xsd 
            http://www.springframework.org/schema/mvc 
            http://www.springframework.org/schema/mvc/spring-mvc-4.3.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 ">
    </beans>
    
    
    1. 在spring-db.xml文件的beans标签下,加入子标签context:component-scan,扫描service
    <!-- 项目把controller和service分开扫描,springmvc框架只扫描controller,spring框架只扫描service -->
    <!-- 这里让扫描service,指定service的包  -->
    <context:component-scan base-package="com.xx.ssmdemo.phone.service"></context:component-scan>
    <context:component-scan base-package="com.xx.ssmdemo.pc.service"></context:component-scan>
    
    
    1. 在在spring-db.xml文件的beans标签下,加入子标签context:property-placeholder,作用是导入我们在db.properties中配置的数据库连接参数
    <!-- 加载db.properties文件中的内容 -->
    <context:property-placeholder location="classpath:db.properties"/>
    
    
    1. 加入子标签bean,引入数据库连接池dbcp
    <!-- 配置dbcp数据源 -->
    <!-- value属性里在“${}”里面的文本,应该和db.properties文件中等号左边的文本对应 -->
    <!-- id属性可以自定,class属性的值必须如下,property子标签的属性name的值必须如下 -->
    <bean id="mydataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <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>
    
    
    1. 加入子标签bean,实例化mybatis的session工厂(mybatis里的session就是connection)
    <!-- sqlSessionFactory -->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <!-- 数据库连接池 -->
            <property name="dataSource" ref="mydataSource" />
            <!-- 加载mybatis的全局配置文件 -->
            <property name="configLocation" value="classpath:mybatis.xml" />
        </bean>
    
    
    1. 加入子标签bean,实例化mapper扫描器,作用是把被mybatis管理的dao的实现类纳入spring的ioc容器,以便注入注解能找到
    <!-- mapper扫描器-->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <!-- 扫描包路径,如果需要扫描多个包,中间使用半角逗号隔开 -->
            <property name="basePackage" value="com.xx.ssmdemo.pc.mapper"></property>
            <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
        </bean>
    
    

    创建spring事务管理的配置文件,起名为spring-transaction.xml

    1. 在config目录下创建xml文件,名字叫spring-transaction.xml
    2. 在spring-transaction.xml文件中加入,根标签beans同时加入命名空间
    <?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: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-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 
            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 ">
    <beans>
    
    
    1. 创建子标签bean,作用是整个项目中管理事务的类实例,事务管理器
    <!-- 事务管理器   对mybatis操作数据库进行事务控制,spring使用jdbc的事务控制类 -->
    <!-- id属性值可以随便起 -->
    <!-- id属性如下固定 -->
    <!-- 子标签property的name属性固定不变,ref属性的值是上一个spring-db.xml文件中dbcp数据源bean标签的id值 -->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <!-- 数据源dataSource在spring-db.xml中已经配置-->
            <property name="dataSource" ref="mydataSource" />
        </bean>
    
    
    1. 创建子标签tx:advice,配置springaop管理事务时的通知,同时指定事务的传播行为
    <!-- 通知 -->
    <!-- id属性随便起 -->
    <!-- transaction-manager属性的值,是上面事务管理器的bean标签的id属性的值 -->
        <tx:advice id="txAdvice" transaction-manager="transactionManager">
            <tx:attributes>
                <!-- 传播行为 -->
                <!--
                PROPAGATION_REQUIRED - 支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。 
                PROPAGATION_SUPPORTS - 支持当前事务,如果当前没有事务,就以非事务方式执行。 
                PROPAGATION_MANDATORY - 支持当前事务,如果当前没有事务,就抛出异常。 
                PROPAGATION_REQUIRES_NEW - 新建事务,如果当前存在事务,把当前事务挂起。 
                PROPAGATION_NOT_SUPPORTED - 以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。 
                PROPAGATION_NEVER - 以非事务方式执行,如果当前存在事务,则抛出异常。
    
                isolation属性 - [隔离级别]
    
                https://www.cnblogs.com/yangy608/archive/2011/06/29/2093478.html
    
                read-only只读
                read-only只读事务配置是为了避免多次查询结果不一致,即在进行数据库查询之前,已经查询的结果不能有变动
                -->
                <!--
                tx:method作用是,指定aop:advisor标签的属性pointcut找到的类里,哪个方法加事务,方法名字采用下面通配形式
                tx:method子标签的name属性的值,采用通配符形式,*代表任意字符
                下面的name属性值的配置的含义是:以四个单词开头的方法都被加入事务
                -->
                <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>
    
    
    1. 引入子标签aop:config,创建sop方式管理事务的配置
        <aop:config>
        <!--
        第一个 * - 通配 返回值类型
        第二个 * - 通配包com.xx.ssmdemo.pc.service.impl下的class
        第三个 * - 通配包com.xx.ssmdemo.pc.service.impl下的class的方法
        第四个 .. - 通配 方法可以有0个或多个参数
        -->
        <!-- advice-ref的值是上面tx:advice标签的id属性的值 -->
            <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.xx.ssmdemo.pc.service.impl.*.*(..))"/>
        </aop:config>
    

    springmvc + spring + mybatis 程序开发

    1.分包

    com.xx.项目名.po
    com.xx.项目名.mapper
    com.xx.项目名.service
    com.xx.项目名.controller

    2.对应数据库的表,把mybatis的po、mapper接口、mapper.xml实现文件创建

    • 在po包下创建表对应的PO类

    • 在mapper包下创建mapper接口和mapper.xml即接口的实现文件

    • 在service包下,创建服务类接口,和接口实现类

    • 在controller包里,创建控制类

    相关文章

      网友评论

          本文标题:SSM整合

          本文链接:https://www.haomeiwen.com/subject/rxmoyqtx.html