SSM整合框架(相关依赖)

SSM整合框架是指Spring+SpringMVC+MyBatis三个开源框架的整合。

以下是SSM整合框架的搭建步骤:

  1. 创建maven项目

  2. 在pom.xml中添加Spring、SpringMVC、MyBatis等必要依赖

  3. 在web.xml中配置DispatcherServlet和ContextLoaderListener

  4. 创建Spring的配置文件applicationContext.xml,并在其中配置dataSource、sqlSessionFactory、transactionManager和MyBatis的Mapper扫描器等

  5. 创建SpringMVC的配置文件spring-mvc.xml,并在其中配置视图解析器、处理器映射器、异常处理器等

  6. 配置MyBatis的Mapper文件

  7. 创建Controller、Service和Mapper等业务相关的类

  8. 在Controller中编写处理请求的方法,调用Service层提供的方法完成业务逻辑,最终返回视图

  9. 在Service层中编写业务逻辑相关的方法,并调用Mapper层提供的方法来完成数据访问操作

  10. 在Mapper层中编写对数据库的操作方法

完成以上步骤后,即可成功搭建基于SSM整合框架的Web应用程序。


  
  
    org.springframework
    spring-context
    4.3.2.RELEASE
  
  
    org.springframework
    spring-webmvc
    4.3.2.RELEASE
  

  
  
    org.mybatis
    mybatis
    3.4.4
  
  
    org.mybatis
    mybatis-spring
    1.3.1
  

  
  
    mysql
    mysql-connector-java
    5.1.47
  

  
  
    javax.servlet
    servlet-api
    2.5
    provided
  

 

你可能感兴趣的:(mybatis,后端,java,spring,数据库)