Displaytag 1.2 error
问题 I am using displaytag for the first time. I have added the jar files to the library. Here is the code: <html:form action="/contractorDetail" > <div class="Frame"> <div class="Main"> <% if ( session.getAttribute("companyList") != null ) { List<Company> companyList = (List)session.getAttribute("companyList"); if (companyList.size() != 0 ) { %> <% request.setAttribute( "companyList", companyList ); %> <display:table name="companyList" > </display:table> <%}%> <%}%> </div> </div> <html:form> The