Java Spring Webflow アプリケーションがあり、言語を選択するために独自のサブドメインにリダイレクトする必要があります。つまり、mysite.com から fr.mysite.com へ。
externalRedirect を試しましたが、空白の html ページしか表示されません。
Webflow 定義スニペットは次のとおりです。
<transition on="found" to="redirectOnRetrieve">
<evaluate expression="retrieveController.getFoundApplicationRedirect(flowRequestContext)" result="flowScope.redirectUrl"/>
</transition>
これにより、リダイレクトする必要がある URL が決まります。次に示すのは、externalRedirect を使用したビュー ステートです。
<view-state id="redirectOnRetrieve" view="externalRedirect:${flowScope.redirectUrl}"/>
リクエスト パラメータを URL に追加することもできますか?