在url中使用动态参数的RedirectView

时间:2015-04-15 19:51:24

标签: spring spring-mvc spring-batch-admin

所以,在我的控制器中我有一个映射@RequestMapping(value = "/profile-{id}/launch")的方法,在它的最后我想将流重定向到同一个控制器中的其他方法,映射@RequestMapping(value = "/profile-{id}/executions") ... 我有义务使用xml配置注入RedirectView bean。所以我有类似

的东西
<bean name="redirect:executions" class="org.springframework.web.servlet.view.RedirectView">
        <property name="url" value="#{resourceService.servletPath}/profile-{id}/executions" />
        <property name="contextRelative" value="true" />
    </bean>

但是我如何定位特定的配置文件ID,因为在第一个方法结束时我必须写回“redirect:executions”,因为我的目标是bean的名称,而且它不能是动态的。

或者我使用类似return "redirect:/profile-"+someID+"/executions"

的内容定位网址

0 个答案:

没有答案