当前位置:网站首页>SSM assembly
SSM assembly
2022-07-06 02:15:00 【hjhcos】
List of articles
brief introduction
SSM The assembly is Spring + SpringMVC + MyBatis Integration of the framework , Divide the system into view layers 、 Control layer 、 Service layer 、 The data layer .
controller The controller will be used service service ;service The service will be used mapper Data mapping and converting data into domain Data objects ;mapper Data mapping will be used domain Define data types .
entity: Data objects , It can reduce the data processing process .
model: stay entity On the basis of improvement , Make the data more humanized .
domain: stay model Expand and integrate data sources based on , It can enrich data and diversify .
Controller registration
adopt @Controller and @RestController Annotations can automatically register the controller into the project , Pass again like this @RequestMapping Annotations can map requests , Generally, you can access pages or data .
By the way @RestController = @Controller + @ResponseBody, Its source code is basically the same .
The controller is scanned
When class is used @Controller To register the controller and be able to Spring Application scanning can be divided into two cases :
External dependencies are referenced into the project
You can probably understand that when the controller is not in the current project , But in the dependency package of the project , for example SpringSecurity Default login page , It is referenced through external modules .
And Spring Application startup class peer automatic scanning
spring-boot-starter-web
file :https://www.yiibai.com/spring-boot/spring-boot-starter-web.html
spring-boot-starter-web The integration package includes web、webmvc and tomcat .
therefore tomcat The server and Spring MVC The framework is automatically configured , Greatly reduce the amount of development .
If you want to configure the server yourself , Can also be spring-boot-starter-tomcat Exclude items from use tomcat The server .
mybatis-spring-boot-starter
mybatis-spring-boot-starter Integration package is right MyBatis + MyBatis-Spring + SpringBoot Integrated packaging of , Therefore, it is highly dependent , But it greatly reduces the amount of development , You don't have to configure SqlSessionFactory And transaction processing .
function
Automatically discover existing data sources
utilize SqlSessionFactoryBean Create and register SqlSessionFactory
Create and register SqlSessionTemplate
Automatic scanning Mapper, And register to the Spring Context environment facilitates the injection and use of programs
By default, it will find @Mapper Annotation marker mapper , In addition, you can actually pass @MapperScan Annotations to scan packages .
MyBatis
MyBatis Is an excellent persistence layer framework , It supports customization SQL、 Stored procedures and high-level mappings .MyBatis It dispenses with almost everything JDBC Code and the work of setting parameters and getting result sets .MyBatis It can be done by simple XML Or annotations to configure and map primitive types 、 Interface and Java POJO(Plain Old Java Objects, Ordinary old-fashioned Java object ) For records in the database .
SqlSession
SqlSessions By SqlSessionFactory Instance created .SqlSessionFactory Object contains create SqlSession Examples of various methods . and SqlSessionFactory Itself is made up of SqlSessionFactoryBuilder Created , It can come from XML、 Note or Java Configure code to create SqlSessionFactory.
XML mapper
The element tag
label | describe |
---|---|
cache | Cache configuration of namespace |
cache-ref | Cache configuration referring to other namespace |
resultMap | Describes how to load objects from a database result set |
sql | sql sentence , A block of repeatable terms that can be referenced by other statements |
insert | Mapping insert statements |
update | Mapping update statements |
delete | Mapping delete statements |
select | Mapping query statements |
Element attributes
attribute | value | The default value is | scene | describe |
---|---|---|---|---|
id | string | —— | [select | update |
parameterType | object | unset | [select | update |
resultType | object | —— | [select | update |
resultMap | object | —— | [select | update |
flushCache | boolean | false | [select | update |
useCache | boolean | true | select | If this statement is called, the result will be cached by the L2 cache . |
timeout | int | unset | [select | update |
fetchSize | int | unset | [select | update |
resultOrdered | boolean | false | [select] | If true, It is assumed that nested result sets or groups are included , When a main result row is returned , There is no reference to the previous result set . This makes it possible to get nested result sets without running out of memory . |
resultSets | [object…] | —— | [select] | This setting only applies to multiple result sets . It will list the result sets returned after the statement is executed and give each result set a name , Multiple names are separated by commas . |
useGeneratedKeys | boolean | false | [insert | update] |
keyProperty | string | unset | [insert | update] |
keyColumn | string | —— | [insert | update] |
\
边栏推荐
- Overview of spark RDD
- Use the list component to realize the drop-down list and address list
- 机器学习训练与参数优化的一般过程 (讨论)
- Computer graduation design PHP college student human resources job recruitment network
- Gbase 8C database upgrade error
- 正则表达式:示例(1)
- 729. 我的日程安排表 I / 剑指 Offer II 106. 二分图
- leetcode3、实现 strStr()
- [solution] every time idea starts, it will build project
- 阿里测开面试题
猜你喜欢
抓包整理外篇——————状态栏[ 四]
Using SA token to solve websocket handshake authentication
插卡4G工业路由器充电桩智能柜专网视频监控4G转以太网转WiFi有线网速测试 软硬件定制
leetcode3、实现 strStr()
vs code保存时 出现两次格式化
使用npm发布自己开发的工具包笔记
0211 embedded C language learning
selenium 等待方式
SQL statement
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
随机推荐
阿裏測開面試題
Computer graduation design PHP college classroom application management system
01. Go language introduction
Virtual machine network, networking settings, interconnection with host computer, network configuration
[coppeliasim] 6-DOF path planning
[flask] official tutorial -part2: Blueprint - view, template, static file
Campus second-hand transaction based on wechat applet
MySQL index
The intelligent material transmission system of the 6th National Games of the Blue Bridge Cup
Audio and video engineer YUV and RGB detailed explanation
02.Go语言开发环境配置
genius-storage使用文档,一个浏览器缓存工具
Publish your own toolkit notes using NPM
Derivation of Biot Savart law in College Physics
【社区人物志】专访马龙伟:轮子不好用,那就自己造!
2022 PMP project management examination agile knowledge points (8)
How does redis implement multiple zones?
更改对象属性的方法
Visualstudio2019 compilation configuration lastools-v2.0.0 under win10 system
Selenium waiting mode