1

我在将参数传递给 Oracle ADF 中 JSP 中的托管 bean 时遇到问题。这是一个示例 JSP 测试页面,我试图将参数传递给 POJO 中的测试方法:

<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <af:document title="Automated Scheduling Tool > Customer Portal > Packages"
                 id="d1">
      <af:messages id="m1"/>
      <af:form id="f1">
        <center>
          <br/><br/><br/>
          <table cellspacing="0" cellpadding="45" width="800">
            <tr>
              <td width="100%" class="darkBackground">
                <span class="largeTitle">AUTOMATED SCHEDULING TOOL</span>                 
                <br/>                 
                <span class="mediumTitle">CUSTOMER PORTAL</span>
              </td>
            </tr>
            <tr>
                <af:outputText value="#{pageFlowScope.customerFacadeBean.test['test1', 'test2']}" id="ot1" />
            </tr>
          </table>
        </center>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>

public class CustomerFacade {
    private final PackageMapper mapper;
    private List<Package> packages;

    public CustomerFacade() {
        mapper = new PackageMapper();
        packages = mapper.findAllPackages();
    }

    public List<Package> getPackages() {
        return packages;
    }


    public String test(String testString1, String testString2){
        System.out.println(testString1 + testString2);
        return "Success!";
    }
}

有人对我如何通过托管 bean 将参数传递给 POJO 有任何建议吗?

4

2 回答 2

2
#{pageFlowScope.customerFacadeBean.test['test1', 'test2']}

这不是合法的统一表达式语言表达式。你可能会做这样的事情:

#{pageFlowScope.customerFacadeBean.test['test1']['test2']}

...test解析为地图的地方:

  public Map<Object, Map<Object, Object>> getTest() {
    return new HashMap<Object, Map<Object, Object>>() {
      @Override
      public Map<Object, Object> get(final Object test1) {
        return new HashMap<Object, Object>() {
          @Override
          public Object get(Object test2) {
            return getSomething(test1, test2);
          }
        };
      }
    };
  }

  private Object getSomething(Object test1, Object test2) {
    //TODO
  }

显然,这真的很丑陋。

您可以尝试在表单中实现自定义功能#{stuff:callTest(pageFlowScope.customerFacadeBean, 'test1', 'test2')}

实现JSP 2.1 维护版本 2的服务器应该支持表单的表达式#{mybean.something(param)}阅读此以获得更多信息)。一些框架可能已经支持这种语法 - 值得检查文档。

于 2009-11-08T12:28:21.450 回答
0

有一个类似于上面的优雅的替代解决方案:http ://wiki.apache.org/myfaces/Parameters_In_EL_Functions

于 2010-02-09T04:24:05.920 回答