0

我想从 casGenericSuccess.jsp 导航到我添加的 jsp 页面,但我无法使用超链接转到下一页。

我所做的是:

login-webflow.xml 中的更改

    <view-state id="viewGenericLoginSuccess" view="casLoginGenericSuccessView">
            <transition on="userManagement" to="userManagementHome" />
    </view-state>

default_views.properties

userManagementHome.(class)=org.springframework.web.servlet.view.JstlView 
userManagementHome.url=/WEB-INF/view/jsp/default/ui/userManagementHome.jsp 

casGenericSuccessView.jsp

<jsp:directive.include file="includes/top.jsp" />
                <div id="msg" class="success">

<spring:message code="screen.success.header" />
                        <p><spring:message code="screen.success.success" /></p>
                        <p><spring:message code="screen.success.security" /></p>

                        <a href="login?_flowExecutionKey=${flowExecutionKey}&_eventId=userManagement">User   Management

                </div>
<jsp:directive.include file="includes/bottom.jsp" />

我也尝试将 href 更改为 login?&_eventId=userManagement

我的 userManagementHome.jsp 位于 casGenericSuccess.jsp 所在的同一位置。

有人可以帮我导航到我的页面。

现在它没有导航并在单击用户管理链接时显示相同的 casGenericSuccess.jsp 页面。

4

1 回答 1

0

尝试使用execution而不是_flowExecutionKey

于 2012-11-26T09:14:29.257 回答