我正在对WebCenter提供的portlet进行一些研究,但是我遇到了一些与在它们之间传输参数有关的问题。我的想法是创建2个portlet:一个部门portlet,我可以选择一个departmentId作为参数发送到第二个portlet,员工,所以我将有一个表格,其中包含来自指定部门的相应员工。这两个portlet是基于一些页面流构建的。部门portlet工作正常,但是对于员工portlet,我遇到了一些问题。
与员工相对应的JSP页面片段有一个基于ViewObject的表,后者在其后面有一个基于绑定变量的查询。我创建了一个EmployeesBean,其中我有获取接收参数的方法并使用此绑定变量执行查询。这是代码:
import javax.el.ELContext;
import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import javax.faces.application.Application;
import javax.faces.context.FacesContext;
import oracle.adf.view.rich.context.AdfFacesContext;
import oracle.jbo.ApplicationModule;
import oracle.jbo.Row;
import oracle.jbo.ViewObject;
public class EmployeesBean {
private static final String DEPARTMENT_NUMBER_KEY = "DEPTNO";
private static final int DEPARTMENT_NUMBER_NULL_VALUE = -1;
public EmployeesBean() {
super();
}
public void getEmployees(String deptno) {
System.out.println("enters in getEmployees()");
int filterDeptno = findDepartmentValue(deptno);
FacesContext facesContext = FacesContext.getCurrentInstance();
Application app = facesContext.getApplication();
ExpressionFactory elFactory = app.getExpressionFactory();
ELContext elContext = facesContext.getELContext();
ValueExpression valueExp =
elFactory.createValueExpression(elContext, "#{data.AppModuleDataControl.dataProvider}",
Object.class);
ApplicationModule am = (ApplicationModule)valueExp.getValue(elContext);
ViewObject emplVO;
emplVO = am.findViewObject("EmployeesVO1");
emplVO.setNamedWhereClauseParam("deptno", filterDeptno);
emplVO.executeQuery();
Row r = emplVO.first();
System.out.println(r.getAttribute("FirstName"));
}
public void setDepartmentNumber(String deptno) {
selectDepartment(deptno);
}
public void selectDepartment(String deptno) {
System.out.println("aici e problema");
AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
System.out.println(deptno);
afContext.getPageFlowScope().put(DEPARTMENT_NUMBER_KEY, deptno);
}
public int findDepartmentValue(String defaultValue) {
AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
String deptno =
(defaultValue == null ? (String)afContext.getPageFlowScope().get(DEPARTMENT_NUMBER_KEY) :
defaultValue);
return (deptno == null ? DEPARTMENT_NUMBER_NULL_VALUE :
Integer.valueOf(deptno));
}
}
我还拖了employees.jsff getEmployees()方法,所以如果我去页面定义我有一个绑定,它将确定每次事件出现时要执行的getEmployees方法。如果我创建了事件映射
,所有这些与departments.jsff混合在.jspx页面中现在我正在尝试将此任务流转换为portlet。在为页面流创建portlet条目之后,我需要创建一个导航参数,我在employees.xml中执行此操作:
<input-parameter-definition>
<description>Main context parameter</description>
<display-name>Department Number</display-name>
<name>deptno</name>
<value>#{pageFlowScope.contextProvider.departmentNumber}</value>
<class>java.lang.String</class>
</input-parameter-definition>
<managed-bean>
<managed-bean-name>contextProvider</managed-bean-name>
<managed-bean-class>view.EmployeesBean</managed-bean-class>
<managed-bean-scope>pageFlow</managed-bean-scope>
</managed-bean>
一切正常,但是当我尝试将其用作WebCenter应用程序中的portlet时,当我选择一个部门,departmentId被转移到employees portlet时,selectDepartment被调用,但getEmployees()从不被调用(事件未传播),因此我的表中没有返回任何数据。我是portlet的初学者,我看不出问题所在。谁能给我一些想法?
答案 0 :(得分:0)
当您使用员工portlet时,它会在页面def中创建页面参数。您必须将数据传递给该参数