Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Persistenz mit MyBatis in Spring Boot
Search
Tobias Erdle
December 16, 2020
Programming
1
49
Persistenz mit MyBatis in Spring Boot
Slidedeck des Talks bei der JUG Augsburg am 15.12.2020
Tobias Erdle
December 16, 2020
Tweet
Share
More Decks by Tobias Erdle
See All by Tobias Erdle
Webanwendungen mit Jakarta MVC und Eclipse Krazo
erdlet
0
110
Webanwendungen mit der MVC API und Eclipse Krazo
erdlet
0
160
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo (Lightweigth Java User Group München)
erdlet
1
560
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo
erdlet
0
250
Other Decks in Programming
See All in Programming
『GO』アプリ バックエンドサーバのコスト削減
mot_techtalk
0
150
お前もAI鬼にならないか?👹Bolt & Cursor & Supabase & Vercelで人間をやめるぞ、ジョジョー!👺
taishiyade
7
4.1k
密集、ドキュメントのコロケーション with AWS Lambda
satoshi256kbyte
1
210
Serverless Rust: Your Low-Risk Entry Point to Rust in Production (and the benefits are huge)
lmammino
1
140
Better Code Design in PHP
afilina
0
150
PRレビューのお供にDanger
stoticdev
1
220
Ruby on cygwin 2025-02
fd0
0
170
Amazon Q Developer Proで効率化するAPI開発入門
seike460
PRO
0
120
GoとPHPのインターフェイスの違い
shimabox
2
200
Honoとフロントエンドの 型安全性について
yodaka
7
1.4k
未経験でSRE、はじめました! 組織を支える役割と軌跡
curekoshimizu
0
110
Introduction to kotlinx.rpc
arawn
0
750
Featured
See All Featured
Docker and Python
trallard
44
3.3k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
How to Think Like a Performance Engineer
csswizardry
22
1.4k
Embracing the Ebb and Flow
colly
84
4.6k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.2k
Code Review Best Practice
trishagee
67
18k
GitHub's CSS Performance
jonrohan
1030
460k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
10
1.3k
Designing Experiences People Love
moore
140
23k
A Modern Web Designer's Workflow
chriscoyier
693
190k
Java REST API Framework Comparison - PWX 2021
mraible
29
8.4k
Transcript
None
None
None
• • •
• • • • •
None
None
- MyBatis Homepage • • •
<insert id="insertCustomer"> INSERT INTO customers (first_name, last_name) VALUES (#{firstName}, #{lastName})
</insert>
<insert id="insertCustomer"> INSERT INTO customers (first_name, last_name) VALUES (#{firstName}, #{lastName})
</insert> @Insert("INSERT INTO customers (first_name, last_name) VALUES (#{firstName}, #{lastName})") void insertCustomer(Customer customer)
Ein paar Beispiele…
None
• • • • •
• • • • •
• • • •
None