Spring 3 をレガシー サーブレット アプリケーションに統合し、レガシー アプリを徐々に変換することで、Spring を学習しています。
私が使用しているものと同様の web.xml *-servlet.xml を以下に掲載します。基本的に、"search" のような文字列を取得すると、Spring がそれをコントローラーにルーティングし、ビュー リゾルバーが "search" を "/jsp/search.jsp" に変換するように設定されています。
レガシー サーブレットとレガシー ServletFilter から Spring への応答.sendRedirect("search")を実行する際に問題が発生しました。URL は正しく出力されましたが、JSP に到達したことを示す System.out.println() 呼び出しにもかかわらず、空白のページが表示されました。Spring からのエラー メッセージは表示されず、ブラウザからはリダイレクトに問題があることがわかりました。
従来のサーブレットとサーブレットフィルターからリダイレクトする代わりに、転送することでその問題を修正しました。
request.getRequestDispatcher("search").forward(request,response);
getServletConfig().getServletContext().getRequestDispatcher("search").forward(request,response);
Spring 3 で行われた新しい JSP からレガシー サーブレットへの OTHER 方向に進み、画面にボタンがあるので、「location.href=/helloworld」への JavaScript 呼び出しを使用しました。いくつかのパラメーターを送信する必要があるため、これらのボタンを小さな HTML フォームの送信に変換する可能性があります。
私が疑問に思っているのは、Spring 3 とレガシー サーブレットをより良い方法で通信させるためのより良いアプローチがあるかということです。
レガシー サーブレット => Spring 3
と
Spring 3 => レガシー サーブレット
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0"
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_3_0.xsd">
<display-name>Acme</display-name>
<!--welcome-file-list>
<welcome-file>/login</welcome-file>
</welcome-file-list-->
<servlet>
<servlet-name>acme</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>acme</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- Help Find The Spring Config Files -->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/nsd-servlet.xml,
/WEB-INF/nsd-security.xml
</param-value>
</context-param>
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- Integrate A Legacy Screen Done With A Servlet -->
<servlet>
<servlet-name>HelloWorldServlet</servlet-name>
<servlet-class>
com.legacy.HelloWorldServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloWorldServlet</servlet-name>
<url-pattern>/helloworldservlet</url-pattern>
</servlet-mapping>
</web-app>
私の acme-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.acme.controller" />
<mvc:resources mapping = "/**" location = "/,file:/apps1/bea/user_projects/domains/acme/common/,file:/c:/weblogic_common_files/acme/"/>
<mvc:annotation-driven/>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "/jsp/"/>
<property name = "suffix" value = ".jsp"/>
</bean>
</beans>