0
我需要在JAVA中以編程方式加載現有的Spring-webflow流來檢查它的安全標記。如何以編程方式加載Spring Webflow流並獲取其內容
我的目標是在特定事件發生後檢查安全標籤。
Spring-webflow 2.4在這裏使用。我的流程看起來像這樣:
<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance"
ns0:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd">
<secured attributes="RIGHT_1,RIGHT_2" />
<view-state id="someViewState">
[...]
</view-state>
[...]
</flow>
那麼我怎麼能通過spring API獲取這個流「內容」?我試圖通過org.springframework.webflow.config包的類找到我的方式,但我沒有在乾草中找到針。我甚至無法成功加載流。
我在流程中工作了一段時間,但我從來不需要在Java代碼中訪問它們。
Thx,對於任何提示。
你可以使用一個FlowExecutionListener – rptmat57