質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Java EE

Java EE(Java Enterprise Edition)はJavaベースのテクノロジーとその相互運用の仕様をまとめたものです。サーバとクライアントのアーキテクチャを規定し、特定アプリケーションのクラス用に定義されたテクノロジー設定のプロファイルを使用します。

Java

Javaは、1995年にサン・マイクロシステムズが開発したプログラミング言語です。表記法はC言語に似ていますが、既存のプログラミング言語の短所を踏まえていちから設計されており、最初からオブジェクト指向性を備えてデザインされています。セキュリティ面が強力であることや、ネットワーク環境での利用に向いていることが特徴です。Javaで作られたソフトウェアは基本的にいかなるプラットフォームでも作動します。

Eclipse

Eclipseは、IBM社で開発された統合開発環境のひとつです。2001年11月にオープンソース化されました。 たくさんのプラグインがあり自由に機能を追加をすることができるため、開発ツールにおける共通プラットフォームとして位置づけられています。 Eclipse自体は、Javaで実装されています。

servlet

Servletとは、Webページの動的な生成やデータ処理などをサーバ上で実行するために、Javaで作成されたプログラムです。 ショッピングサイトやオンラインバンキングといった、動的なウェブサイトの構築に用いられています。

Q&A

解決済

1回答

1207閲覧

JavaサーブレットのサンプルプログラムのURLがどれかわからないor正しく表示されない

soredekimarija

総合スコア3

Java EE

Java EE(Java Enterprise Edition)はJavaベースのテクノロジーとその相互運用の仕様をまとめたものです。サーバとクライアントのアーキテクチャを規定し、特定アプリケーションのクラス用に定義されたテクノロジー設定のプロファイルを使用します。

Java

Javaは、1995年にサン・マイクロシステムズが開発したプログラミング言語です。表記法はC言語に似ていますが、既存のプログラミング言語の短所を踏まえていちから設計されており、最初からオブジェクト指向性を備えてデザインされています。セキュリティ面が強力であることや、ネットワーク環境での利用に向いていることが特徴です。Javaで作られたソフトウェアは基本的にいかなるプラットフォームでも作動します。

Eclipse

Eclipseは、IBM社で開発された統合開発環境のひとつです。2001年11月にオープンソース化されました。 たくさんのプラグインがあり自由に機能を追加をすることができるため、開発ツールにおける共通プラットフォームとして位置づけられています。 Eclipse自体は、Javaで実装されています。

servlet

Servletとは、Webページの動的な生成やデータ処理などをサーバ上で実行するために、Javaで作成されたプログラムです。 ショッピングサイトやオンラインバンキングといった、動的なウェブサイトの構築に用いられています。

0グッド

0クリップ

投稿2021/04/27 07:27

本の教材を使って、Eclipse Javaサーブレットの勉強を始めたものです。
教材の内容に従って、サーブレットを作成はしたのですが、作成したサーブレットのURLを入力しても、「404 NotFound」となってしまいます。

URLがおかしいのか、サーブレットの作成位置がおかしいのか、その他どこがおかしいかがいろいろ試してもわからない状況でして、、
もしよろしければ誰か教えていただけないでしょうか。

大変申し訳ないのですが、よろしくお願いします!

Java Servlet (SampleServlet.java) package jp.tuyano.eclipsebook; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementation class SampleServlet */ // WebServletアノテーション(このクラスがサーブレットであることを示す) @WebServlet("/sample") public class SampleServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public SampleServlet() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub response.setContentType("text/html;charset=UTF-8"); PrintWriter out = response.getWriter(); out.println("<html><body>"); out.println("<h1>サーブレットの世界へようこそ!</h1>"); out.println("</body></html>"); //response.getWriter().append("Served at: ").append(request.getContextPath()); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub //doGet(request, response); super.doPost(request, response); } }

フォルダ構成
SampleWebProj
ーーーsrc
ーーーmainーーーjavaーーーjavajp.tuyano.eclipsebookのパッケージを作成、中にSampleServlet.java
ーーーwebappーーーMETA-INF
ーーーwebappーーーWEB-INF
ーーーwebappーーーanswer.jsp
ーーーwebappーーーquestion.jsp

※フォルダ「Servers」のなかの「server.xml」は一番下部分のpathの点のみ編集しています。
※webappの内容のanswer.jspなどは「http://localhost:8080/jsp/answer.jsp」と入力したら内容が表示されるようになっています。

server.xml

1server.xml 2 3 4<?xml version="1.0" encoding="UTF-8"?> 5<!-- 6 Licensed to the Apache Software Foundation (ASF) under one or more 7 contributor license agreements. See the NOTICE file distributed with 8 this work for additional information regarding copyright ownership. 9 The ASF licenses this file to You under the Apache License, Version 2.0 10 (the "License"); you may not use this file except in compliance with 11 the License. You may obtain a copy of the License at 12 13 http://www.apache.org/licenses/LICENSE-2.0 14 15 Unless required by applicable law or agreed to in writing, software 16 distributed under the License is distributed on an "AS IS" BASIS, 17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 See the License for the specific language governing permissions and 19 limitations under the License. 20--><!-- Note: A "Server" is not itself a "Container", so you may not 21 define subcomponents such as "Valves" at this level. 22 Documentation at /docs/config/server.html 23 --><Server port="8005" shutdown="SHUTDOWN"> 24 <Listener className="org.apache.catalina.startup.VersionLoggerListener"/> 25 <!-- Security listener. Documentation at /docs/config/listeners.html 26 <Listener className="org.apache.catalina.security.SecurityListener" /> 27 --> 28 <!--APR library loader. Documentation at /docs/apr.html --> 29 <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/> 30 <!-- Prevent memory leaks due to use of particular java/javax APIs--> 31 <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/> 32 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/> 33 <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener"/> 34 35 <!-- Global JNDI resources 36 Documentation at /docs/jndi-resources-howto.html 37 --> 38 <GlobalNamingResources> 39 <!-- Editable user database that can also be used by 40 UserDatabaseRealm to authenticate users 41 --> 42 <Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/> 43 </GlobalNamingResources> 44 45 <!-- A "Service" is a collection of one or more "Connectors" that share 46 a single "Container" Note: A "Service" is not itself a "Container", 47 so you may not define subcomponents such as "Valves" at this level. 48 Documentation at /docs/config/service.html 49 --> 50 <Service name="Catalina"> 51 52 <!--The connectors can use a shared executor, you can define one or more named thread pools--> 53 <!-- 54 <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" 55 maxThreads="150" minSpareThreads="4"/> 56 --> 57 58 59 <!-- A "Connector" represents an endpoint by which requests are received 60 and responses are returned. Documentation at : 61 Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) 62 Java AJP Connector: /docs/config/ajp.html 63 APR (HTTP/AJP) Connector: /docs/apr.html 64 Define a non-SSL/TLS HTTP/1.1 Connector on port 8080 65 --> 66 <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/> 67 <!-- A "Connector" using the shared thread pool--> 68 <!-- 69 <Connector executor="tomcatThreadPool" 70 port="8080" protocol="HTTP/1.1" 71 connectionTimeout="20000" 72 redirectPort="8443" /> 73 --> 74 <!-- Define a SSL/TLS HTTP/1.1 Connector on port 8443 75 This connector uses the NIO implementation that requires the JSSE 76 style configuration. When using the APR/native implementation, the 77 OpenSSL style configuration is required as described in the APR/native 78 documentation --> 79 <!-- 80 <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" 81 maxThreads="150" SSLEnabled="true" scheme="https" secure="true" 82 clientAuth="false" sslProtocol="TLS" /> 83 --> 84 85 <!-- Define an AJP 1.3 Connector on port 8009 --> 86 <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/> 87 88 89 <!-- An Engine represents the entry point (within Catalina) that processes 90 every request. The Engine implementation for Tomcat stand alone 91 analyzes the HTTP headers included with the request, and passes them 92 on to the appropriate Host (virtual host). 93 Documentation at /docs/config/engine.html --> 94 95 <!-- You should set jvmRoute to support load-balancing via AJP ie : 96 <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1"> 97 --> 98 <Engine defaultHost="localhost" name="Catalina"> 99 100 <!--For clustering, please take a look at documentation at: 101 /docs/cluster-howto.html (simple how to) 102 /docs/config/cluster.html (reference documentation) --> 103 <!-- 104 <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> 105 --> 106 107 <!-- Use the LockOutRealm to prevent attempts to guess user passwords 108 via a brute-force attack --> 109 <Realm className="org.apache.catalina.realm.LockOutRealm"> 110 <!-- This Realm uses the UserDatabase configured in the global JNDI 111 resources under the key "UserDatabase". Any edits 112 that are performed against this UserDatabase are immediately 113 available for use by the Realm. --> 114 <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> 115 </Realm> 116 117 <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true"> 118 119 <!-- SingleSignOn valve, share authentication between web applications 120 Documentation at: /docs/config/valve.html --> 121 <!-- 122 <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> 123 --> 124 125 <!-- Access log processes all example. 126 Documentation at: /docs/config/valve.html 127 Note: The pattern used is equivalent to using pattern="common" --> 128 <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" prefix="localhost_access_log" suffix=".txt"/> 129 130<!-- この行のpath="/jsp"のみ編集済み--> 131 <Context docBase="SampleWebProj" path="/jsp" reloadable="false" source="org.eclipse.jst.jee.server:SampleWebProj"/></Host> 132 </Engine> 133 </Service> 134</Server>

試したURL

http://localhost:8080/SampleServlet
http://localhost:8080/SampleServlet/sample
http://localhost:8080/jsp/SampleServlet/
http://localhost:8080/jsp/SampleServlet/sample
http://localhost:8080/jsp/jp/tuyano/eclipsebook/SampleServlet/
http://localhost:8080/jsp/jp/tuyano/eclipsebook/SampleServlet/sample

使用環境について
Eclipse IDE 2020_12
Tomcat v8.0 サーバー

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

m.ts10806

2021/04/27 07:35

web.xmlの設定どうなっているのでしょうか。 あとどのように実行されているのでしょうか
soredekimarija

2021/04/27 07:41

web.xmlは特に触っていない状況です。。 ここの編集が必要でしょうか? 実行はEclipse内の内部WebブラウザーからURLを入力し、移動しようとしている状況です。 よろしくお願いします。
K_3578

2021/04/27 07:45 編集

localhost:8080/SampleWebProj/SampleServlet/sample じゃないのか。
m.ts10806

2021/04/27 08:00

何も設定してなければ プロジェクト名はURLに入ります。 「コンテキストパス」をキーワードに調べてください。
K_3578

2021/04/28 07:59

で、結局どうなったの?
soredekimarija

2021/04/28 11:31

@K_3578様 教えていただき、ありがとうございます! 遅くなり大変申し訳ございません。。 localhost:8080/SampleWebProj/SampleServlet/sample localhost:8080/jsp/SampleWebProj/SampleServlet/sample も先ほど試してみたのですが、うまく動きませんでした。。
soredekimarija

2021/04/28 19:08

@m.ts10806様 お返事遅くなり、申し訳ありません。。 コンテキストパスについて調べてみます! ありがとうございます!
K_3578

2021/04/30 07:51

教材多分調べたら出てきたけど「Eclipse4.4で」云々書いてあるし、(4.4のLunaは14年とかだったはず)Eclipse2020_12と機能が違う説があるかも。(あくまで憶測だが)
soredekimarija

2021/05/01 08:02

@K_3578様 @hoshi-takanori様 アドバイスいただきありがとうございます! 作成したサーブレットを選択して、 「サーバーから実行」を行うと無事に動きました!! その際に自動的にserver.xmlの内容が書き変わるように選択でき、 http://localhost:8080/SampleWebProj/sample で動作しました。 お手数おかけしてすみません。。 本当にありがとうございました。
K_3578

2021/05/01 08:16

原因よく分からんな・・・結果的に動いたけどベストとは言い難いですね。 どっかでまた引っかかるかもしれないので気をつけなされ。
soredekimarija

2021/05/02 04:51

@K_3578様 そうなんですよ、???? しっかり調査して何かわかったら追加しようと思います。 本当にありがとうございました????‍♂️????‍♂️
guest

回答1

0

自己解決

作成したサーブレットを選択して、
「サーバーから実行」を行うと無事に動きました。
その際に自動的にserver.xmlの内容が書き変わるように選択でき、結果としては
http://localhost:8080/SampleWebProj/sample
で動作するようになりました。

お手数おかけしてすみません。。
さまざまなご意見いただき、本当にありがとうございました。

投稿2021/05/01 08:03

soredekimarija

総合スコア3

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問