JSP でプロジェクトを開始しました。Eclipse Helios 3.6 と Tomcat 6.0 の統合を使用しています。問題は、Tomcat サーバーを Eclipse から起動すると、正常に起動することです (つまり、ホームページが「localhost:8085」に表示されていることを意味します)。 )、しかし、「新しい動的Webプロジェクト」(「web-content」フォルダーにindex.htmlを表示するだけの非常に単純なプロジェクトでも)を作成すると、404 not foundエラーが発生しました。ディレクトリ構造は次のとおりです。
「localhost:8085/testing」からプロジェクトにアクセスしているのですが、このように404エラーが表示されてしまいます……。
web.xml の私のコードも非常に単純です:-
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>testing</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>