Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Sign up for free
Menu
Search
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Pricing
Search
Sign in
Sign up for free
ADK_for_Java.pdf
Search
clouddev-code
November 15, 2025
120
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
ADK_for_Java.pdf
clouddev-code
November 15, 2025
More Decks by clouddev-code
See All by clouddev-code
microVMsのユースケースを考える.pdf
cloudevcode
0
52
cdk8s_Helm_どちらを選ぶべきか_rev.pdf
cloudevcode
0
160
Regional_NAT_Gatewayについて_basicとの違い_試した内容スケールアウト_インについて_IPv6_dual_networkでの使い分けなど.pdf
cloudevcode
1
940
Grafana_LokiをECS_Fargateで構築する観点公開版.pdf
cloudevcode
0
66
initContainerをECSで実現したい.pdf
cloudevcode
0
48
VPC_Lattice検討したが_採用しなかった話.pptx.pptx.pdf
cloudevcode
0
37
Presentation_-_コンテナイメージ高速化技術.pptx.pdf
cloudevcode
0
46
GitHub_Copilot_AgentでするMCP_Streamable_HTTPまで.pdf
cloudevcode
0
130
EKS_Auto_Mode_Deep_Live.pdf
cloudevcode
0
66
Featured
See All Featured
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
2
430
Ten Tips & Tricks for a 🌱 transition
stuffmc
0
220
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
520
A Modern Web Designer's Workflow
chriscoyier
699
190k
First, design no harm
axbom
PRO
2
1.3k
Leading Effective Engineering Teams in the AI Era
addyosmani
9
2.6k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
270
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
4.3k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
2.2k
KATA
mclloyd
PRO
35
15k
sira's awesome portfolio website redesign presentation
elsirapls
0
410
Discover your Explorer Soul
emna__ayadi
2
1.3k
Transcript
Agent Development Kit for Javaで AI エージェント開発を 2025.11.15 soushi Hiruta
JJUG CCC 2025 Fall Lightning Talk
プロフィール Profile 01 Name Soushi Hiruta 02 Work 基盤設計構築 03
Community CommunityBuilder 2025 ( Container Category ) 04 興味 KubeConEU 2023~2026 05 Social X @web_se GitHub clouddev-code
目次 CONTENT 01 ADK Agent Development Kit 02 ADK for
Java QuickSttartで始め方 03 Python版との比較 Python版との比較 04 まとめ
JavaでAIエージェントするとなると LangCahin4j、Spring AI 1.1、Agent Development Kit for Java JavaでAIエージェント
Agent Development Kit GoogleからリリースしたAIエージェント開発ツール 01
AI Agentを開発するためのフレームワーク Gemini,Googleエコシステムで最適化されているが、ADKはモデル非依存 A2A、Build-in toolも豊富にある Python、Go、Java、Typescript実装が公開されている。 Agent Development Kit
ADK for Java 02
ADK for Javaの始め方 2つの情報を並べて整理するのに適したページです。 プロジェクト作成 Maven projectの作成 前提条件 Java 17+、Apache
Maven
Quick Start https://google.github.io/adk-docs/get-started/java/#run-with-command-l ine-interface
コマンドラインでの実行 mvn compile exec:java -Dexec.mainClass="com.example.agent.AgentCliRunner" 初回はmavenのcentralリポジトリからダウンロードされるので少々時間がかかる
8000だとSpringBoot+TomcatのWeb Serverは起動できたけど、真っ黒の画面になってしまった mvn compile exec:java \ -Dexec.mainClass="com.google.adk.web.AdkWebServer" \ -Dexec.args="--adk.agents.source-dir=target --server.port=8000"
分量の多テキストを入力する際に便利なページです。 Webインターフェースでの確認
mvn compile exec:java \ -Dexec.mainClass="com.google.adk.web.AdkWebServer" \ -Dexec.args="--adk.agents.source-dir=target --server.port=8080" Webインターフェースでの確認
Python版との比較 03
Root Agent java Python
Toolz java Python
JavaでもAIエージェントを! まとめ
• https://github.com/google/adk-java?tab=readme-ov-file 索引