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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Tobias Erdle
December 16, 2020
Programming
1
66
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
140
Webanwendungen mit der MVC API und Eclipse Krazo
erdlet
0
190
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo (Lightweigth Java User Group München)
erdlet
1
680
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo
erdlet
0
330
Other Decks in Programming
See All in Programming
20260313 - Grafana & Friends Taipei #1 - Kubernetes v1.36 的開發雜記:那些困在 Alpha 加護病房太久的 Metrics
tico88612
0
220
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
16
3.3k
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
310
PHPのバージョンアップ時にも役立ったAST(2026年版)
matsuo_atsushi
0
150
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
590
20260315 AWSなんもわからん🥲
chiilog
2
160
ベクトル検索のフィルタを用いた機械学習モデルとの統合 / python-meetup-fukuoka-06-vector-attr
monochromegane
2
470
SourceGeneratorのマーカー属性問題について
htkym
0
200
Understanding Apache Lucene - More than just full-text search
spinscale
0
130
Kubernetesでセルフホストが簡単なNewSQLを求めて / Seeking a NewSQL Database That's Simple to Self-Host on Kubernetes
nnaka2992
0
160
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
210
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
2.5k
Featured
See All Featured
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.8k
The SEO identity crisis: Don't let AI make you average
varn
0
420
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
160
Fashionably flexible responsive web design (full day workshop)
malarkey
408
66k
Code Reviewing Like a Champion
maltzj
528
40k
Designing for Timeless Needs
cassininazir
0
170
A Soul's Torment
seathinner
5
2.5k
Pawsitive SEO: Lessons from My Dog (and Many Mistakes) on Thriving as a Consultant in the Age of AI
davidcarrasco
0
89
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
Building AI with AI
inesmontani
PRO
1
800
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
230
Optimizing for Happiness
mojombo
378
71k
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