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
API Meetup #17でのLT
Search
Keigo Hattori
December 09, 2016
Technology
0
590
API Meetup #17でのLT
Keigo Hattori
December 09, 2016
Tweet
Share
More Decks by Keigo Hattori
See All by Keigo Hattori
“Cost-efficient and scalable ML-experiments in AWS with spot-instances, Kubernetes and Horovod” の紹介と感想
keigohtr
2
2.5k
Rekcurd update and demo
keigohtr
0
550
What we need for MLOps
keigohtr
0
3k
Introduction of Machine Learning Production Pitch#1
keigohtr
0
3.4k
自動でツイッター要約をする執事ボット作った (API Meetup #28)
keigohtr
0
19k
API Meetup Tokyo #24 スマートスピーカーとAPI連携 LINE Clova
keigohtr
0
7.8k
API Meetup #22 LT大会(Apitore)
keigohtr
0
1.2k
AI x WebAPI もくもく会 Vol.1 イントロダクション
keigohtr
0
300
OneJapan企画提案ピッチ-大企業ハッカソン-
keigohtr
0
1.1k
Other Decks in Technology
See All in Technology
データの信頼性を支える仕組みと技術
chanyou0311
6
1.6k
Engineering at LY Corporation
lycorp_recruit_jp
0
320
マルチモーダル / AI Agent / LLMOps 3つの技術トレンドで理解するLLMの今後の展望
hirosatogamo
1
140
Datachain会社紹介資料(2024年11月) / Company Deck
datachain
4
17k
AIチャットボット開発への生成AI活用
ryomrt
0
140
SREの前に
nwiizo
11
2.7k
Windows Autopilot Deployment by OSD Guy
tamaiyutaro
0
310
OCI Data Integration技術情報 / ocidi_technical_jp
oracle4engineer
PRO
1
2.6k
AI長期記憶システム構築のための LLMマルチエージェントの取り組み / Awarefy-LLM-Multi-Agent
iktakahiro
2
350
TinyGoを使ったVSCode拡張機能実装
askua
2
200
DMARC 対応の話 - MIXI CTO オフィスアワー #04
bbqallstars
1
130
株式会社島津製作所_研究開発(集団協業と知的生産)の現場を支える、OSS知識基盤システムの導入
akahane92
1
180
Featured
See All Featured
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
46
2.1k
How GitHub (no longer) Works
holman
310
140k
4 Signs Your Business is Dying
shpigford
180
21k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
What's new in Ruby 2.0
geeforr
343
31k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
Speed Design
sergeychernyshev
24
600
Building Your Own Lightsaber
phodgson
102
6.1k
Optimising Largest Contentful Paint
csswizardry
33
2.9k
Docker and Python
trallard
40
3.1k
Agile that works and the tools we love
rasmusluckow
327
21k
Documentation Writing (for coders)
carmenintech
65
4.4k
Transcript
Spring(Java)で作る WebAPIのすすめ API Meetupに参加したらマイクロサー ビスかつOauthでSwaggerなWebAPIの マーケットプレイスが出来た話 Apitore 服部圭悟 1
Keigo Hattori (@keigohtr) 東北大学卒、情報工学修士。大手 複合機メーカーで機械学習の研究 職として勤務。自然言語処理およ び画像処理が専門。 連絡先:
[email protected]
https://apitore.com/
自己紹介 2
Apitore(あぴたー) -Web APIのマーケットプレイス- 3
企業には「使っていない」「製品にも なっていない」「公開もされていない」 ICT研究技術が多くある (自分も含め・・・) 4
世界中のICTを集約し、整理し、誰もが簡 単に使える世の中にしたい (じゃなきゃやってらんねーよ・・・) 5
シェアリングエコノミー? シェアリングテクノロジー!!! 6
7 準優勝しました!(2015/11)
8 API界隈の勉強をはじめたのは 一年前くらいから (意外となんとかなる)
Apitore -Web APIのマーケットプレイス- 9
MySQL Eureka Apitore UI Solr API Server (Oauth 2.0) API
API API … Nginx Nginx PayPal インフラはGoogle Cloud Platformを利用 バックエンドはSpringを利用 完全SSL通信(Let’s Encrypt証明書) DBアクセスはHybernate 構成 Facebook SendGrid Client SendGrid PayPal Client Facebook Client 10
MySQL Eureka Apitore UI Solr API Server (Oauth 2.0) API
API API … Nginx Nginx PayPal インフラはGoogle Cloud Platformを利用 バックエンドはSpringを利用 完全SSL通信(Let’s Encrypt証明書) DBアクセスはHybernate 構成 Facebook SendGrid Client SendGrid PayPal Client Facebook Client 11
12 というわけで・・・
13 Apitoreを支える イカれたメンバーを紹介するぜ! (Spring最高!!!)
14 ベースは任せた!縁の下の力持ち! Spring-boot
Spring-boot 15 @RestController public class HelloController { @RequestMapping(value=“/hello", method=RequestMethod.GET) public
String hello() { return "Hello"; } } たったこれだけでAPIが作れちゃう!
16 ギターはお前だ!フロントを支える! Spring-security
Spring-security 17 @Configuration @EnableWebSecurity public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
//中略 } 暗号化はbasicからbcryptまで幅広く抑え る!Oauth2.0の認可もおまかせ!
18 ビートを刻め!全体を見渡す! Spring-cloud
Spring-cloud 19 @Configuration @ComponentScan @EnableFeignClients @EnableDiscoveryClient @EnableCircuitBreaker @EnableZuulProxy public class
ApitoreClientMain { //中略 } マイクロサービス化が簡単に!
20 ビラ制作担当 SpringFox (この子はSpringじゃありません)
SpringFox 21 @Configuration @EnableSwagger2 public class SwaggerConfiguration { // 中略
} SpringのアノテーションからAPIの仕様書 を作れちゃう優れもの! (OpenAPI Specification準拠)
22 本日のライブハウスは・・・ API Meetup
補足1 • Spring-webmvc: 画面遷移コントローラ • Spring-jdbc: データアクセス • Spring-security: 認証や権限回り
• Spring-security-oauth: Oauth回り • Spring-cloud: マイクロサービス回り • Spring-social: SNS連携 23
補足2(お役立ちリンク) • http://www.slideshare.net/makingx • http://enterprisegeeks.hatenablog.com/entry/20 15/11/02/000000 • http://www.slideshare.net/shintanimoto/spring- boot-netflix-eureka •
http://callistaenterprise.se/blogg/teknik/2015/0 5/20/blog-series-building-microservices/ • http://mix- juice001.hatenablog.com/entry/2015/09/23/230 233 (後日Apitoreブログでスライド公開します) 24
25 ご清聴ありがとうございました! 詳細は「Apitore」で検索 or @keigohtr を フォローしてね! 草ベンチャー仲間も募集中です♪