SpringMVC和MyBatis基本框架搭建

SpringMVC和MyBatis组合是一个非常流行的框架模式,这里来简单讲讲框架的整合。框架整合的结构图如下:

SpringMVC和MyBatis基本框架搭建_第1张图片

  1. 整合dao层
    mybatis和spring整合,通过spring管理mapper接口。
    使用mapper的扫描器自动扫描mapper接口在spring中注册。

  2. 整合service层
    通过Spring管理service接口
    使用配置方式将service接口配置在spring配置文件中
    实现事务控制

  3. 整合dao层springmvc层
    springmvc是spring的模块,自己使用就可以了。


具体项目搭建过程如下:
1.创建一个web project,在Web-Root/WEB-INF/lib中导入整合所需要的jar包百度云下载

2.创建一个源文件夹config下加入日志及数据库连接配置文件。
log4j.properties(日志)具体信息:

# Global logging configuration\uff0c\u5efa\u8bae\u5f00\u53d1\u73af\u5883\u4e2d\u8981\u7528debug
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

db.properties(数据库连接)具体信息:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis
jdbc.username=root
jdbc.password=mysql

然后在src下创建四个包,至此项目的结构如下:

SpringMVC和MyBatis基本框架搭建_第2张图片

3.整合dao:把mybatis和spring进行整合,在config中创建一个包mybatis,在其中加入sqlMapConfig.xml,具体代码如下:



<configuration>
    

    
    

    
    <typeAliases>
        <package name="cn.itcast.ssm.po"/>
    typeAliases>
configuration>

然后在config中创建一个spring包,加入spring和mybatis整合配置applicationContext.xml,具体代码如下:

<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-3.2.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

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

    
    <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="30" />
        <property name="maxIdle" value="5" />
    bean>

    
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        
        <property name="dataSource" ref="dataSource" />
        
        <property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml" />
    bean>

    
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        
        <property name="basePackage" value="cn.itcast.ssm.mapper">property>
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
    bean>
beans>

你可能感兴趣的:(SpringMVC和MyBatis基本框架搭建)