qq_43556827 2021-04-14 07:26 采纳率: 100%
浏览 136
已采纳

在jsp-form表单中使用c:forEach,页面初次加载不显示数据

每次都需要点submit才可以显示数据。

我感觉是因为页面需要请求才能进行反应,然后我jsp初次加载是没有请求的。

该怎么解决??

import java.io.IOException;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import dao.PersonDao;
import dao.PersonDaoImpl;
import entity.Person;

@WebServlet("/Test01Servlet")
public class Test01Servlet extends HttpServlet {

    public Test01Servlet() {
        super();
    }

	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		super.doPost(request, response);
	}

	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		request.setCharacterEncoding("utf-8");
		response.setCharacterEncoding("utf-8");
		String z = request.getParameter("mm");
		if("showall".equals(z)){
			List<Person> l = new PersonDaoImpl().showAll();
			request.setAttribute("plist", l);
			request.getRequestDispatcher("test01.jsp").forward(request, response);
		}
	}

}
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page import="java.util.*" %>
<%@ page import="entity.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Test01</title>
</head>
<body>
	<form action="Test01Servlet?mm=showall" method="post">
		<table border="1">
			<tr>
				<th>name</th>
				<th>age</th>
				<th>phone</th>
				<th>city</th>
			</tr>
			<c:forEach items="${plist }" var="p">
				<tr>
					<td>${p.name }</td>
					<td>${p.age }</td>
					<td>${p.phones }</td>
					<td>${p.cities }</td>
				</tr>
			</c:forEach>
		</table>
		<input type="submit" value="show">
	</form>
</body>
</html>

展开全部

  • 写回答

3条回答 默认 最新

  • 张小帅和刘美美 2021-04-14 07:57
    关注

    首次加载的时候的路径 直接请求到servlet 然后重定向到前端jsp页面  就可以了

     

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部