Spring開発者の助けが必要です。
WindowsでSTS3.1を使用しています。「新規」>「Springテンプレートプロジェクト」>「mymvc」という名前のSpringMVCプロジェクトを選択して、新しいMVCプロジェクトを作成し、vFabrictcサーバーで実行しました。ブラウザでを指定するとhttp://localhost:8080/mymvc/
、404エラーが発生しますが、URLを使用すると正常に機能しますhttp://localhost:8080/app/
。
サーバー上にはアプリケーションが1つだけあり/app
、プロジェクト内のURLマッピングはありません。
私は何かを逃していますか?
ご案内ください。ありがとう。
編集
web.xmlは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
もう1つ、プロジェクトを実行したときではhttp://localhost:8080/app/
なく、パッケージにcom.mycompany.appという名前を付け、STSを起動しました。http://localhost:8080/mymvc/