Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
288 views
in Technique[技术] by (71.8m points)

primefaces - IndexOutOfBoundsException when migrating from Java6 to Java8

We are currently migrating our application from Java6 to Java8.We use primefaces-4.0 and JSF 2.2 version.

Following is the code:

// Iterate over columns.
                for (int i = 0; i < dynamicList.get(0).size(); i++) {
                    // Create <h:column>.
                    column = new Column();
                    // Create <h:outputText value="dynamicHeaders[i]"> for <f:facet name="header"> of column.
                    column.setHeaderText(dynamicHeaders[i]);
                    //column.setWidth("" + (100 / dynamicHeaders.length));
                    //dynamicDataTable.getChildren().add(column);
                    System.out.println("Table after setting values");
                    System.out.println("List size is:"+dynamicList.size());
                    System.out.println("First list size is:"+dynamicList.get(0).size());
                    System.out.println("Elements:"+dynamicList.get(0)); 
                    System.out.println(column.getHeaderText());
                    System.out.println(column.getChildren().get(i)); //Getting IndexOutOfBounds exception in this line
                    // Create <h:outputText value="#{dynamicItem[" + i + "]}"> for the body of column.
                    output = new OutputLabel();
                    output.setValueExpression("value", createValueExpression("#{dynamicItem[" + i + "]}", String.class));
                    column.getChildren().add(output);
                    System.out.println("Column information");
                    System.out.println(output.toString());
                    System.out.println(output.getValue());
                    System.out.println(output.getChildren().get(i));
                    System.out.println(output.getValueExpression("value"));
                    System.out.println(output.getChildren().size());
                    System.out.println(output.getFamily());
                    
                }

We are generating reports in Excel. When debugging code able to see IndexOutOfBounds Exception(have commented the line). In logs I'm able to print the list values and table is also constructed using primefaces. I'm facing issue only when setting value to the table.This works fine in Java6.

I'm unable to identify where the issue is.Kindly help.

question from:https://stackoverflow.com/questions/65622859/indexoutofboundsexception-when-migrating-from-java6-to-java8

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...