如果我在实现的Servlet中任意分配一个“ id”值,则它可以工作;但是,如果我不正确,它将正确地从抽象类继承id值,并跳过“ if”语句以转发到“ then”语句中提供的url。是什么赋予了?可以分辨出'id'变量出了什么问题:
抽象servlet片段:
protected Integer id = null;
private void _doProcess(final HttpServletRequest request, final HttpServletResponse response)
throws IOException, ServletException {
try {
response.setContentType("text/html");
writer = response.getWriter();
final String idString = request.getParameter("id");
if(StringUtil.isNotEmptyStringTrimmed(idString)){
try {
id = Integer.parseInt(idString.trim());
} catch (NumberFormatException e) {
id = null;
}
}
doProcess(request,response);
} finally {
id = null;
}
try {
writer.close();
} catch (Exception e) {
// no-op
}
}
实现servlet片段:
public void doProcess(final HttpServletRequest request, final HttpServletResponse response)
throws IOException, ServletException {
// set page title
final HttpSession session = request.getSession();
session.setAttribute("pageTitle", "Training Project 5: Author");
if (id == null){
request.setAttribute("authorNamesList", printAuthorNames());
request.getRequestDispatcher("authorList.jsp").include(request,response);
}else{
final Author author = BEAN_FACTORY.getMember(id);
session.setAttribute("authorId",author.getId());
session.setAttribute("name", author.getName());
session.setAttribute("bio", author.getBio());
session.setAttribute("picture",author.getPicture());
session.setAttribute("bookTitles", printBookTitles(author.getId()));
request.getRequestDispatcher("authorPage.jsp").include(request,response);
}
}
当上面的servlet'else'代码不在条件语句中时,下面的jsp代码将起作用:
<div id="right">
<table class="display" summary="Author Information">
<tr>
<td><span class="brown">Author Id: <c:out value="${authorId}"/></span></td>
</tr>
<tr>
<td><span class="brown">Name: <c:out value="${name}"/></span></td>
</tr>
<tr>
<td><span class="brown">Bio: <c:out value="${bio}"/></span></td>
</tr>
<tr>
<td>
<p>
<span class="brown"><img src="<c:out value="${picture}"/>" alt= ""/></span>
</p>
</td>
</tr>
最佳答案
除非id
是类字段,否则您不会向我们显示所有代码。您还不清楚“不起作用”是什么意思。预期内容为空?你有例外吗?