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
ADK_for_Java.pdf
Search
clouddev-code
November 15, 2025
89
1
Share
ADK_for_Java.pdf
clouddev-code
November 15, 2025
More Decks by clouddev-code
See All by clouddev-code
Amazon_Bedrock_AgentCore_の概要_-_Slidev.pdf
cloudevcode
0
28
Regional_NAT_Gatewayについて_basicとの違い_試した内容スケールアウト_インについて_IPv6_dual_networkでの使い分けなど.pdf
cloudevcode
1
880
Grafana_LokiをECS_Fargateで構築する観点公開版.pdf
cloudevcode
0
34
initContainerをECSで実現したい.pdf
cloudevcode
0
25
VPC_Lattice検討したが_採用しなかった話.pptx.pptx.pdf
cloudevcode
0
23
Presentation_-_コンテナイメージ高速化技術.pptx.pdf
cloudevcode
0
29
GitHub_Copilot_AgentでするMCP_Streamable_HTTPまで.pdf
cloudevcode
0
110
EKS_Auto_Mode_Deep_Live.pdf
cloudevcode
0
52
re_invent_2024アップデートで実現可能なアーキテクチャを考える.pdf
cloudevcode
1
300
Featured
See All Featured
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Introduction to Domain-Driven Design and Collaborative software design
baasie
1
740
The Art of Programming - Codeland 2020
erikaheidi
57
14k
Why Our Code Smells
bkeepers
PRO
340
58k
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
680
How Software Deployment tools have changed in the past 20 years
geshan
0
33k
Rails Girls Zürich Keynote
gr2m
96
14k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.4k
How to optimise 3,500 product descriptions for ecommerce in one day using ChatGPT
katarinadahlin
PRO
1
3.5k
Information Architects: The Missing Link in Design Systems
soysaucechin
0
900
Building Flexible Design Systems
yeseniaperezcruz
330
40k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.7k
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 索引