0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

IT初心者学習 Tomcatって何

Posted at

Tomcatとは

APPサーバー
Java servletを動かすときに使うソフトでWebコンテナのこと
サーブレットコンテナともいう

簡易的なWebサーバーとしての機能あり

正式名称「Apache Tomcat」

流れ

クライアント
↓ HTTPリクエストを投げる
↓
Apache(Webサーバー)
↓処理要求
↓
Apache Tomcat(Javaアプリケーションサーバー)
↓
Java
↓SQL投げる
↓
データベース(データベースサーバー)
↓
Java
↓
Apache Tomcat
↓処理結果
↓
Apache
↓HTTPレスポンスを送る
↓
クライアント

★クライアントはwebサーバーに対してリクエストを送るので、ApacheとTocmatがある場合、クライアントと最初に繋がるのはApacheになる

★リクエストに対し、ApacheからWebアプリケーションを動作させるための実行環境であるTomcatへ必要な処理を要求する

★DBとTomcatの間にJavaがあり、そのJavaがDBを叩くのに必要なテンプレートを作成したりしている
(TomcatがDBを叩きに行くわけではない)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?