Skip to main content

Get full access to 実用 Go言語 ―システム開発の現場で知っておきたいアドバイス and 60K+ other titles, with a free 10-day trial of O'Reilly.

There are also live events, courses curated by job role, and more.

10.2 ウェブプログラミングの基本

この節ではGoの net/http パッケージが動作する仕組みを紹介した後、ウェブアプリケーションを開発する上でのTipsを紹介していきます。サードパーティーの便利なウェブアプリケーションフレームはたくさんありますが、まずはGoの標準ライブラリ net/http パッケージで何ができるかを知っておくと良いでしょう。GinやEchoなど著名なフレームワークも net/http をベースにしたラッパーに近い存在であるため、 net/http で学んだ知識をすぐ活かすことができます。

note

2021年のJetBrainsの調査によると、開発者が定期的に使用しているウェブフレームワークはGinやEchoやBeegoを抑えて、何も使っていない、という回答が一番多くありました。

https://www.jetbrains.com/ja-jp/lp/devecosystem-2021/go/

10.2.1 HTTPサーバーを実装する

GoのHTTPサーバーを知るには net/http パッケージの主要な型、インタフェースを押さえると見通しが良くなります。大きく以下の3つです。

  • Handler インタフェース

  • HandlerFunc

  • ServeMux

Handler インタフェースは ServeHTTP メソッドを定義しています。リクエストが呼び出されたときに動作するハンドラーです。Handler インタフェースを満たしていれば、HTTPサーバーのハンドラーとしてふるまえます。 ...

Get 実用 Go言語 ―システム開発の現場で知っておきたいアドバイス now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.

Don’t leave empty-handed

Get Mark Richards’s Software Architecture Patterns ebook to better understand how to design components—and how they should interact.

It’s yours, free.

Get it now
Cover of Software Architecture Patterns

Check it out now on O’Reilly

Dive in for free with a 10-day trial of the O’Reilly learning platform—then explore all the other resources our members count on to build skills and solve problems every day.

Start your free trial Become a member now