Springmvc-resourcebundleviewresolver
提供:Dev Guides
Spring MVC-リソースバンドルビューリゾルバーの例
TestWeb-servlet.xml
ここで、 basename は、ビューを運ぶリソースバンドルの名前を指します。 リソースバンドルのデフォルト名は views.properties で、basenameプロパティを使用してオーバーライドできます。
views.properties
たとえば、URIの場合、上記の構成を使用して-
/helloが要求された場合、DispatcherServletは要求をviews.propertiesのbean helloで定義されたhello.jspに転送します。 * ここで、「hello」は一致するビュー名です。 一方、 *class はビュータイプを指し、URLはビューの場所です。
まず、動作するEclipse IDEを用意し、Spring Web Frameworkを使用して動的フォームベースのWebアプリケーションを開発するための次の手順を検討します。
Step | Description |
---|---|
1 | Create a project with a name TestWeb under a package com.finddevguides as explained in the Spring MVC - Hello World chapter. |
2 | Create a Java class HelloController under the com.finddevguidespackage. |
3 | Create a view file hello.jsp under the jsp sub-folder. |
4 | Create a properties file views.properties under the src folder. |
5 | Download JSTL library jstl.jar. Put it in your CLASSPATH. |
6 | The final step is to create the content of the source and configuration files and export the application as explained below. |
HelloController.java
TestWeb-servlet.xml
views.properties
hello.jsp
ソースファイルと構成ファイルの作成が完了したら、アプリケーションをエクスポートします。 アプリケーションを右クリックし、[エクスポート]→[WARファイル]オプションを使用して、HelloWeb.warファイルをTomcatのwebappsフォルダーに保存します。
次に、Tomcatサーバーを起動し、標準ブラウザーを使用してwebappsフォルダーから他のWebページにアクセスできることを確認します。 URL- http://localhost:8080/HelloWeb/hello にアクセスしてみてください。SpringWebアプリケーションで問題がなければ、次の画面が表示されます。