博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSM整合(精简版)
阅读量:5226 次
发布时间:2019-06-14

本文共 3599 字,大约阅读时间需要 11 分钟。

 

 SSM:(Spring +SpringMVC+MyBatis缩写)是个框架集合,由Spring 、SpringMVC、MyBatis三个开源框架整合而成

spring的作用:spring相当与起一个统领的地位,它将各层进行整合。作用分别为:

  • 管理持久层的dao
  • 管理业务层service,管理事务,service中可调用mapper接口
  • 管理表示层的controller。controller中可调用service几口

      dao,service,controller都是JavaBean,都要加到spring容器中,但其中一点是springMVC本来就是spring的一部分,所以不能用整合这个词来形容

项目结构如下:

 

 

所需的jar包

废话不多说,直接上代码!

spring-mvc.xml

  spring-mybatis.xml

  log4j2.xml

C://logs

   web.xml

Demo_ssm
contextConfigLocation
classpath:spring/spring-mybatis.xml
encodingFilter
org.springframework.web.filter.CharacterEncodingFilter
true
encoding
UTF-8
encodingFilter
/*
org.springframework.web.context.ContextLoaderListener
org.springframework.web.util.IntrospectorCleanupListener
SpringMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring/spring-mvc.xml
1
true
SpringMVC
/
org.springframework.web.context.ContextLoaderListener
org.springframework.web.util.IntrospectorCleanupListener
org.apache.logging.log4j.web.Log4jServletContextListener
log4jConfiguration
classpath:log4j2/log4j2.xml

  

 项目下载:链接: https://pan.baidu.com/s/19SL-s9rcTkqbSpJGDfCEzQ 提取码: 1u17

本文地址:

 

转载于:https://www.cnblogs.com/mojxtang/p/11191031.html

你可能感兴趣的文章
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>
WSDL 详解
查看>>
[转]ASP数组全集,多维数组和一维数组
查看>>
C# winform DataGridView 常见属性
查看>>
逻辑运算和while循环.
查看>>
Nhiberate (一)
查看>>
c#后台计算2个日期之间的天数差
查看>>
安卓开发中遇到的小问题
查看>>
ARTS打卡第3周
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
cookies相关概念
查看>>
CAN总线波形中ACK位电平为什么会偏高?
查看>>
MyBatis课程2
查看>>