Spring Web Flow: выражение игнорируется - PullRequest
0 голосов
/ 06 мая 2020
Выражение

игнорируется после защищенных атрибутов. Как исправить это?

<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/webflow
        http://www.springframework.org/schema/webflow/spring-webflow-2.4.xsd">

    <view-state id="searchby" model="form1">
        <transition on="next" to="isAccountValid">
            <secured attributes="ROLE_USER"/>
            <evaluate expression="customSessionManager.setPageSession()"/>
         </transition>
    </view>

    <decision-state id="isAccountValid">
        <if test="Receipt().getSuccess()" then="myaccount" else="pay"/>
    </decision-state>

</flow>

<evaluate expression="customSessionManager.setPageSession()"/> не оценивается.

...