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
600
Vorschau auf Webanwendungen mit MVC 1.0 und Eclipse Krazo
erdlet
0
270
Other Decks in Programming
See All in Programming
複雑なフォームを継続的に開発していくための技術選定・設計・実装 #tskaigi / #tskaigi2025
izumin5210
12
6.3k
iOSアプリ開発もLLMで自動運転する
hiragram
6
2.1k
TypeScriptのmoduleオプションを改めて整理する
bicstone
4
420
Reactive Thinking with Signals, Resource API, and httpResource @Devm.io Angular 20 Launch Party
manfredsteyer
PRO
0
130
Zennの運営完全に理解した #完全に理解したTalk
wadayusuke
1
140
RubyKaigi Hack Space in Tokyo & 函館最速 "予習" 会 / RubyKaigi Hack Space in Tokyo & The Fastest Briefing of RubyKaigi 2026 in Hakodate
moznion
1
120
技術懸念に立ち向かい 法改正を穏便に乗り切った話
pop_cashew
0
750
鯛変だったRubyKaigi 2025 ── それでも楽しかった!
pndcat
0
130
漸進。
ssssota
0
1.1k
"使いづらい" をリバースエンジニアリングする UI の読み解き方
rebase_engineering
0
110
人には人それぞれのサービス層がある
shimabox
3
460
技術的負債と戦略的に戦わざるを得ない場合のオブザーバビリティ活用術 / Leveraging Observability When Strategically Dealing with Technical Debt
yoshiyoshifujii
0
160
Featured
See All Featured
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Music & Morning Musume
bryan
47
6.5k
GraphQLとの向き合い方2022年版
quramy
46
14k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
21k
The World Runs on Bad Software
bkeepers
PRO
68
11k
Designing for humans not robots
tammielis
253
25k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
34
2.3k
Mobile First: as difficult as doing things right
swwweet
223
9.6k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Scaling GitHub
holman
459
140k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
The Language of Interfaces
destraynor
158
25k
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