我目前正在开发一个包含JSP,servlet和一些CRUD数据库服务的网站。我被困在CRUD的读取部分,因为我无法获得所需的效果。
我已连接到数据库,并且能够毫无困难地从网站插入数据。我现在要做的是在数据库的一行中调用JSP调用中的select / option框,并在下一页上翻译该行的相应列。但是,我无法从选项框中看到多行。代码如下所示。
Bean类:
public class ReadBean {
protected String title;
protected String author;
protected String text;
public String getTitle() {
return title;
}
public void setTitle(String newTitle) {
title = newTitle;
}
public String getAuthor() {
return author;
}
public void setAuthor(String newAuthor) {
author = newAuthor;
}
public String getText() {
return text;
}
public void setText(String newText) {
text = newText;
}
}
控制器:
@WebServlet(urlPatterns = { "/com/defaultValidate/ReadController" })
public class ReadController extends HttpServlet {
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
ReadBean reader = new ReadBean();
String address;
if (request.getParameter("ReadConfirm") != null) {
try {
Connection connect = ConnectionManager.getConnection();
String SQL = "SELECT * FROM prayers ORDER BY prayerTitle DESC";
PreparedStatement ps = connect.prepareStatement(SQL);
ResultSet rs = ps.executeQuery();
while (rs.next()) {
request.getSession().setAttribute("ref", reader);
reader.setTitle(rs.getString("prayerTitle"));
}
} catch (Exception e) {
}
address = "ReadConfirm.jsp";
} else if (request.getParameter("ReadView") != null) {
address = "ReadView.jsp";
} else {
address = null;
}
RequestDispatcher dispatcher = request.getRequestDispatcher(address);
dispatcher.forward(request, response);
}
}
然后是控制器响应的相应jsp页面:
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@include file="MenuHeader.jsp"%>
</div>
<div id="mainBorder"> </div>
<div id="mainBody">
<table id="mainTable">
<tr>
<td id="sidebar">
<h2>Options</h2>
<ul>
</ul>
</td>
<td id="mainContent">
<h2 id="contentHeader">Select a prayer</h2>
<form action="ReadController">
<table border="1" width="1" cellspacing="5" cellpadding="5">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><select name="prayer_id">
<c:forEach var="ReadController" items="${ref.title}">
<option value="">${ref.title}</option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<td><input type="submit" name="ReadView" value="View"> </td>
</tr>
</tbody>
</table>
</form>
<td id="imageBar">
</td>
</table>
<%@ include file="../menuHeaderAndFooter/MenuFooter.jsp" %>
我绝对不是专家,但我认为我在从控制器到JSP中的for-each元素的连接之间缺少一些东西,我只是坚持。如果好奇,本节的WEB-XML部分是可操作的,ConnectionManager是一个简单的调用来建立与数据库的连接。 Glassfish包是使用的服务器。
如果您对代码的任何其他部分有任何疑问,请告诉我,因为我非常有兴趣尽快完成并尽快运行此特定项目。我很乐意提供所需的任何其他编码和参考。
对这个特定地点的任何帮助都非常感谢,非常有帮助。谢谢你看这个。
答案 0 :(得分:2)
问题在于这部分代码
while(rs.next()){
request.getSession().setAttribute("ref", reader);
reader.setTitle(rs.getString("prayerTitle"));
}
每次读取新值然后将“ref”放在会话中时,您将覆盖“ref”属性。所以你在会话中放入一个值,因此你得到一行。
因此,将所有值放在集合中,如列表,然后在会话中设置该列表:
List<ReadBean> myList = new Arraylist<ReadBean>();
while(rs.next()){
ReadBean reader = new ReadBean();
reader.setTitle(rs.getString("prayerTitle"));
myList.add(reader);
}
request.getSession().setAttribute("ref", myList);
现在您可以使用jsp中的for each
:
<c:forEach var="myReader" items="${ref}">
<option value="">${myReader.title}</option>
</c:forEach>
请注意我在上面for-each
循环中所做的更改。
首先在items
属性中需要一个集合,因此我们在会话中设置了一个名为ref
的集合,因此我们可以使用它。
现在在var
属性中,我们定义了一个类似于
for(Reader myReader : ref)
// myReader将进入var
而ref
列表(集合)将进入items
现在,您可以使用myReader
for-each
或${myReader.title}
${myReader['title']}
var来访问这些媒体资源
答案 1 :(得分:1)
修改您的代码
List<ReadBean> readerList = new Arraylist<ReadBean>();
while(rs.next()){
// blah blah
reader.setTitle(rs.getString("prayerTitle"));
readerList.add(reader); // add this reader instance to list
}
// after while loop
request.getSession().setAttribute("ref", readerList);
相应地修改您的JSP以在必要时迭代使用readerList,我认为它应该在没有jsp修改的情况下工作。