错误

1.Cannot create JDBC driver of class '' for connect URL 'null'

错误原因:

找了半天,发现自己没有吧jar包变成奶瓶······虽然资源已经放在web-inf/lib下

2.Property 'name' not found on type java.lang.String

源代码

    <c:if test="${!empty cs}">

        <table>

            <c:forEach items="${cs} " var="c">

                <tr>

                    <td>${c.name}</td>

                    <td>${c.description}</td>

                </tr>

            </c:forEach>

        </table>

    </c:if>

很奇怪,只打印${c}的话,能看出c不是String类型,但遍历其属性的时候,非说其是String类型。很奇怪啊!!

修改后:

    <c:if test="${!empty cs}">

        <table>

            <c:forEach items="${cs}" var="c">

                <tr>

                    <td>${c.name}</td>

                    <td>${c.description}</td>

                </tr>

            </c:forEach>

        </table>

    </c:if>

错误原因:

items="${cs}"

不能有空格,有了空格竟然当成String遍历!无语!!

你可能感兴趣的:(错误)