所以我在这里有代码将我的用户名参数值发送到我的 index.jsp 欢迎页面:
response.sendRedirect("index.jsp?username=" + username);
该名称显示在我的 index.jsp 页面中:
<%= "Welcome " + request.getParameter("username")%>
但是,URL 显示的是我不想要的信息:
http://localhost:8088/Trading_Platform_Web/index.jsp?username=ClayBanks1989
任何想法如何掩盖这个?
此外,最好只显示我的数据库中的名字。但我们可以专注于手头的任务。