html中的动态表

时间:2014-06-22 19:39:53

标签: jquery html mysql spring

我想在spring mvc中从mysql的jsp页面中显示数据,并且表结构没有预先定义(即)其列号更改。有人帮我这个。

2 个答案:

答案 0 :(得分:0)

String build="";build+="<table align='center' id='tab' width='75%' border='1'>";
    while(rs.next())
    {
        System.out.println("here innnn");
        build+="<tr>";
        for(int j=2;j<tcolcount+2;j++){
            build+="<td>"+rs.getString(j)+"</td>";
            last.add(rs.getString(j));
        }
        build+="</tr>";
    }
    build+="</table>";

答案 1 :(得分:-1)

我会看一下Spring MVC的一些示例项目。其中一个最好的是PetClinic示例,您可以在GitHub上找到here

一旦你对这个项目有所了解,我会尝试修改这个项目来显示你的数据。