とりあえずコード書けよ

技術的なことの備忘録。

tomcat

tomcatの名前の由来

learning.oreilly.com 上記の本の「1. Getting Start with Tomcat」内の「Where Did Tomcat Come From ?」でTomcatの製作者の言葉が書かれている。 O'Reilly books have animals on the covers. So what animal would I want on the cover of the O'Reilly b…

dockerのtomcatでスタートページとかWebアプリケーションマネージャが404になる場合

結論 webapps.distをwebappsにリネーム $ mv webapps webapps2 $ mv webapps.dist webapps 環境 dockerイメージ tomcat:9.0.70-jdk17-corretto-al2 詳細 1.コンテナを起動する $ docker run -d -p 8080:8080 --name tomcat9 tomcat:9.0.70-jdk17-corretto-al…