我将JSF Faces流引入到我的应用程序中。按照oracle文档进行操作。但是,只能在根目录下。
是否有可能将JSF流文件夹放在子文件夹中,否则放在根文件夹中?
我不能让这个工作。大家好!
我自己解决了这个问题。
JSF流定义可以通过两种方式完成:
- 配置文件:flowname-flow.xml
- 配置类:flowname.java
第一个只能定义一个流名称,其位置默认为根文件夹。
第二个可以定义文件夹结构中更深的位置。
配置文件示例 : testflow.flow.xml
只能添加id="testFlow"到定义中,不能添加路径。首页默认为testFlow/testFlow.xhtml。
<?xml version='1.0' encoding='UTF-8'?>
<faces-config version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
<flow-definition id="testFlow">
<flow-return id="returnFromTestFlow">
<from-outcome>#{testFlow.returnValue}</from-outcome>
</flow-return>
</flow-definition>
</faces-config>
配置类示例: TestFlow.java
将完全限定路径添加到此流中的视图节点。
public class TestFlow implements Serializable {
private static final long serialVersionUID = 1L;
@Produces
@FlowDefinition
public Flow defineFlow(@FlowBuilderParameter FlowBuilder flowBuilder) {
String flowId = "testFlow";
flowBuilder.id("", flowId);
flowBuilder.viewNode(flowId,
"/other/location/flow/" + flowId + ".xhtml").
markAsStartNode();
flowBuilder.viewNode("testFlow2", "/other/location/flow/testFlow2.xhtml");
flowBuilder.viewNode("testFlow3", "/other/location/flow/testFlow3.xhtml");
...
大家好!