0
にあります。私は私のXHTMLでこのテーブルを実装:Beanメソッドからの値の表示が<table>
<table id="tbResult" class="table table-bordered table-striped">
<thead>
<tr>
<th>#{msg.Sgc001tbcod}</th>
<th>Browser</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
</tr>
</tfoot>
</table>
そして、私のBEANでこの選択:私はテーブルにselect()メソッドの値を表示できるように、私はそれを作ることができますどのように
public void select(int first, int pageSize, String sortField, Object filterValue) throws SQLException, ClassNotFoundException, NamingException {
//System.out.println("entre al metodo SELECT");
Context initContext = new InitialContext();
DataSource ds = (DataSource) initContext.lookup(JNDI);
con = ds.getConnection();
//Consulta paginada
String query = "SELECT * FROM";
query += "(select query.*, rownum as rn from";
query += "(SELECT A.CODIGO, A.DESCR ";
query += " FROM PRUEBA1 A";
query += " GROUP BY A.CODIGO, A.DESCR";
query += ")query) " ;
query += " WHERE ROWNUM <="+pageSize;
query += " AND rn > ("+ first +")";
query += " ORDER BY " + sortField.replace("z", "");
pstmt = con.prepareStatement(query);
//System.out.println(query);
r = pstmt.executeQuery();
while (r.next()){
Prueba select = new Prueba();
select.setZcodigo(r.getString(1));
select.setZdesc(r.getString(2));
//Agrega la lista
list.add(select);
}
//Cierra las conecciones
pstmt.close();
con.close();
}
?
これまでのところ、私は何らかの進歩を遂げていません。