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
58
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
180
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo (Lightweigth Java User Group München)
erdlet
1
620
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo
erdlet
0
290
Other Decks in Programming
See All in Programming
MCP連携で加速するAI駆動開発/mcp integration accelerates ai-driven-development
bpstudy
0
250
[Codecon - 2025] Como não odiar seus testes
camilacampos
0
100
書き捨てではなく継続開発可能なコードをAIコーディングエージェントで書くために意識していること
shuyakinjo
0
180
DynamoDBは怖くない!〜テーブル設計の勘所とテスト戦略〜
hyamazaki
0
180
Vibe Codingの幻想を超えて-生成AIを現場で使えるようにするまでの泥臭い話.ai
fumiyakume
21
10k
Android 15以上でPDFのテキスト検索を爆速開発!
tonionagauzzi
0
180
Go製CLIツールをnpmで配布するには
syumai
2
1.1k
可変性を制する設計: 構造と振る舞いから考える概念モデリングとその実装
a_suenami
10
1.5k
Workers を定期実行する方法は一つじゃない
rokuosan
0
140
実践!App Intents対応
yuukiw00w
0
110
MCPで実現できる、Webサービス利用体験について
syumai
7
2.3k
実践 Dev Containers × Claude Code
touyu
1
120
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
47
9.6k
Thoughts on Productivity
jonyablonski
69
4.8k
Balancing Empowerment & Direction
lara
1
530
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
What's in a price? How to price your products and services
michaelherold
246
12k
Unsuck your backbone
ammeep
671
58k
GraphQLとの向き合い方2022年版
quramy
49
14k
How to Think Like a Performance Engineer
csswizardry
25
1.8k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Documentation Writing (for coders)
carmenintech
73
5k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
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