0

Spring MVC のリダイレクトに問題があります。私はいくつかのメソッドを持つコントローラーを持っています:

    //PRINT ALL WORKERS
@RequestMapping("/print")
public String listWorkers(Model model)
{
    model.addAttribute("workerList", workerService.getAllWorkers());
    return "print";
}


//EDIT WORKER DATA
@RequestMapping("/edit")
public String redirectWorker(HttpServletRequest request)
{
    String parameter = request.getParameter("workers");
    String path = "redirect:/edit/" + parameter;
    return path;
}


@RequestMapping("/edit/{worker}")
public String editWorker(@PathVariable("worker")
String login, Model model)
{
    model.addAttribute("worker", workerService.getWorker(login));
    return "edition";
}

たとえば、リクエスト マッピングで「print」を使用するメソッドをプログラムで使用している場合、URL は次のようになります。

http://localhost:8080/WWP/print

しかし、リクエスト マッピングで "edit/{worker}" を使用してメソッドを使用し、その後、"print" を使用してメソッドを使用すると、次の URL を取得しました。

http://localhost:8080/WWP/edit/print

不要な「編集」の後に「印刷」が追加されたためです。以前の URL に戻る方法:

http://localhost:8080/WWP/print

RequestMapping アノテーションを変更する必要があると思います。しかし、これを行う方法がわかりません。

編集: OK、ここに私の 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, /WEB-INF/spring/appServlet/security.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>

    <!-- Filtry -->
    <filter>
        <filter-name>encodingFilter</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>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>

    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>


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


</web-app>
4

1 に答える 1

0

JSPで「c:url」を使用しましたが、うまくいきました。

例えば:

以前の URL が記憶されます (間違っています)。

<a href="/events/my">My Events</a>

いいね:

<c:url var="myEventsUrl" value="/events/my" />
<a href="${myEventsUrl}">My Events</a>

URL は常に次へのリンクです: _http://localhost:8080/WWP/events/my

于 2013-04-13T09:03:45.417 に答える