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
57
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
120
Webanwendungen mit der MVC API und Eclipse Krazo
erdlet
0
170
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo (Lightweigth Java User Group München)
erdlet
1
590
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo
erdlet
0
270
Other Decks in Programming
See All in Programming
20250426 GDGoC 合同新歓 - GDGoC のススメ
getty708
0
110
カオスに立ち向かう小規模チームの装備の選択〜フルスタックTSという装備の強み _ 弱み〜/Choosing equipment for a small team facing chaos ~ Strengths and weaknesses of full-stack TS~
bitkey
1
140
VitestのIn-Source Testingが便利
taro28
8
2.4k
ComposeでのPicture in Picture
takathemax
0
130
UMAPをざっくりと理解 / Overview of UMAP
kaityo256
PRO
3
1.5k
ニーリーQAのこれまでとこれから
nealle
2
760
On-the-fly Suggestions of Rewriting Method Deprecations
ohbarye
3
5.3k
generative-ai-use-cases(GenU)の推しポイント ~2025年4月版~
hideg
1
390
VibeCoding時代のエンジニアリング
daisuketakeda
0
150
Lambda(Python)の リファクタリングが好きなんです
komakichi
5
270
バイラテラルアップサンプリング
fadis
3
430
Improve my own Ruby
sisshiki1969
1
110
Featured
See All Featured
Making the Leap to Tech Lead
cromwellryan
133
9.3k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Faster Mobile Websites
deanohume
307
31k
Building Adaptive Systems
keathley
41
2.5k
Visualization
eitanlees
146
16k
Speed Design
sergeychernyshev
29
930
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.7k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
A better future with KSS
kneath
239
17k
Site-Speed That Sticks
csswizardry
6
540
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
52
2.5k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
19
1.2k
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