https://www.shookuro.com/entry/2020/03/22/122906
上記のWebサイトを参考にし、Spring MVCを使用して、簡単なWebアプリケーションの作成をしております。
しかし、Webサイトと同じように入力しても期待通りの結果が得られず、色々と調べてみましたが、解決方法が分かりませんので、こちらに質問させていただきます。
SampleController.java
package org.hkawa.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class SampleController { @RequestMapping("/") public String sample() { return "sample"; } }
Spring.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> </beans>
spring-mvc.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- Spring MVC の機能を使うことを宣言。 --> <!-- この宣言をすることで、 @Component などのアノテーションが使えるようになる。 --> <mvc:annotation-driven /> <!-- Bean となるクラスファイルが格納されているパッケージを宣言。 --> <!-- Spring はこのパッケージ配下を自動でスキャンし、Bean として登録する。 --> <context:component-scan base-package="org.khkawa " /> <!-- JSP を使用するための宣言 --> <mvc:view-resolvers> <!-- コントローラが JSP 名(拡張子なし)を返した際、Spring が 「.jsp」を付与し「/WEB-INF/views/」配下から探すように設定。 --> <mvc:jsp prefix="/WEB-INF/views/" suffix=".jsp"/> </mvc:view-resolvers> </beans>
sample.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>山崎サンプル</title> </head> <body> Hello yama World! </body> </html>
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <!-- ビジネスロジックのBean 定義ファイル --> <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:/config/spring.xml </param-value> </context-param> <!-- リスナーを登録 --> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- 文字のエンコーディングを指定し --> <filter> <filter-name>characterEncodingFilter</filter-name> <filter-class> org.springframework.web.filter.CharacterEncodingFilter </filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <!-- 上記フィルターをすべての URL で適用する。 --> <filter-mapping> <filter-name>characterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- Spring MVC アプリの場合、だいたいは唯一のサーブレットを登録する。 --> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <!-- Spring MVC の Bean 定義を登録 --> <init-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:/config/spring-mvc.xml </param-value> </init-param> </servlet> <!-- すべての URL リクエストについて、上記で登録したサーブレットで処理する。 --> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
エラー内容
試したこと
- webappsフォルダをDeployment Assembly配下に置く
- Tomcat9には認識させてあります。