1

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>
4

1 に答える 1

1

を使用response.sendRedirect(String url)すると、基本的にリダイレクト先の URL を渡します。

sendRedirect は次の規則に従います。

/*
* Destination, it can be any relative or context specific path.
* if the path starts without '/' it is interpreted as relative to the current request URI.
* if the path starts with '/' it is interpreted as relative to the context.
*/

String destination  ="/jsp/destination.jsp";        
response.sendRedirect(response.encodeRedirectURL(destination));

「検索」と入力すると、これは現在のリクエスト URI に関連します。したがって、現在のリクエストが /acme/something に対するものでない限り、/acme/search がサーブレットであると仮定すると、リクエストは失敗します。

ただし、/acme/search を使用してルートからの相対パスを指定すると、リクエストはどのコンテキストからでも機能します。

そうは言っても、これが本当に最善のアプローチであるとは確信していません。リダイレクトには、さらに別の URL からコンテンツを再度フェッチするようにクライアント ブラウザーに応答を送信することが含まれるためです。これは、サーバーとの間の無駄な旅行のようです。

より良い方法は、Spring MVC などを使用してサーブレットを Spring に接続することです。新しいコントローラー クラスを既存のサーブレットにラップし、HttpServletRequest および HttpServletResponse オブジェクトを渡すことでそれらを直接呼び出すことができるという点で、非常に柔軟です。完了したら、リダイレクトでチェーン化されたシステムではなく、機能する効率的なシステムで冗長なものをゆっくりと排除できます.

package samples;

public class SampleController extends AbstractController {

    private int cacheSeconds;

    // for wiring in cacheSeconds
    public void setCacheSeconds(int cacheSeconds) {
        this.cacheSeconds = cacheSeconds; 
    }
    public int getCacheSeconds() {
        return cacheSeconds;
    }

    public ModelAndView handleRequestInternal(
        HttpServletRequest request,
        HttpServletResponse response) throws Exception {

        // you now have a Spring Controller wired in, and you could delegate to 
          // your legacy servlet in this manner
        YourServlet servlet = new YourServlet();


        servlet.doGet(request, response);

        ModelAndView mav = new ModelAndView("hello");
        mav.addObject("message", "Hello World!");
        return mav;        
    }
}

<bean id="sampleController" class="samples.SampleController">
    <property name="cacheSeconds" value="120"/>
</bean>

サーブレットを手動でインスタンス化することは、実際には良い習慣や良い設計とは見なされないことに注意してください。代わりに、これはSpring Controllerを配線して接続するための足がかりであり、ビジネスロジックをサービスレイヤーに移動することでコードを体系的にリファクタリングし、レガシーサーブレットを排除できます。

このアプローチは、Spring に体系的に移行し、Spring についてさらに学び、技術的負債に取り組みながら、サイトに関連するビジネス目標に取り組むという計画と一致します。

于 2012-05-17T03:00:52.270 に答える