我正在尝试goButton
在 JDeveloper 中实现 a 并且我希望从几个输入文本中获取url
will和 will ,但是当我调用 java 类中的函数时dynamic
public class reportAction {
private static final String LOG = "reportAction --------------------> ";
private BindingContainer bindings;
public String createURL(){
bindings = getBindings();
AttributeBinding test = (AttributeBinding) bindings.get("DesformatName");
System.out.println(LOG + test);
return test.toString();
}
}
(destination="#{reportAction.createURL}")
我把方法放在我得到的目标值中PropertyNotFoundException
为什么?
编辑:
我正在尝试在托管 bean 中构建一个动态 url 并使用 POST 方法调用它。目标是单击 goButton 并通过将目标属性值设置为该 bean 来调用该 bean。我已经定义了一个托管 bean 并将其设置为 adf-config 中的 backingBeanScope。