Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/356.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java NetBeans错误。不知道为什么_Java_Netbeans - Fatal编程技术网

Java NetBeans错误。不知道为什么

Java NetBeans错误。不知道为什么,java,netbeans,Java,Netbeans,我对NetBeans有点小问题,我不知道为什么。我已经一两周没有使用它了,但是我今天去使用我的web应用程序,遇到了很多上次使用它时没有遇到的错误 <sql:query var="words" dataSource="jdbc/onlinedictionary"> SELECT word_id, words FROM Words </sql:query> <%@page contentType="text/html" pageEncoding="UTF-8

我对NetBeans有点小问题,我不知道为什么。我已经一两周没有使用它了,但是我今天去使用我的web应用程序,遇到了很多上次使用它时没有遇到的错误

<sql:query var="words" dataSource="jdbc/onlinedictionary">
    SELECT word_id, words FROM Words
</sql:query>

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<!DOCTYPE html>

<html> 
<link rel="stylesheet" type="text/css" href="style.css">


    <body>

        <h1 align="center">Hello and welcome to my Online English Dictionary</h1>


    <thead>
                <tr>
                    <th>This Online English Dictionary uses a 5,000 word list
                        compiled by Professor Mark Davies of Brigham Young University
                        in Provo, Utah.</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>To view a definition of a particular word, please select
                        from the list below.</td>
                </tr>
                <tr>
                    <td>
                        <form action="submit.jsp">
                            <strong>Select a word:</strong>
                            <select name="word_id">
                                <c:forEach var="row" items="${words.rowsByIndex}">
                                    <option><c:out value="${row[1]}"/></option>
                                </c:forEach>
                            </select>
                            <input type="submit" value="submit" name="submit" />
                        </form>
                    </td>
                </tr>
            </tbody>
    </body>
</html>

错误是数据库表架构已修改,该字段不再在数据库中。

这些错误是?请阅读其中的说明,所有的标签都是错误的,尽管很明显每件东西都有两个。您需要发布至少一个错误摘要,最有可能是一个堆栈跟踪,以便我们可以看到错误是什么,一些是红色的曲线,另一些是黄色的曲线。这是说有些标签被删掉了编辑你的问题,不要把错误放在评论里。整理它!非常感谢。