So I have the code here to send my username parameter value to my index.jsp welcome page :
response.sendRedirect("index.jsp?username=" + username);
The name is displayed in my index.jsp page with this :
<%= "Welcome " + request.getParameter("username")%>
However, the URL is displaying this information which is what I don't want :
http://localhost:8088/Trading_Platform_Web/index.jsp?username=ClayBanks1989
Any ideas how to mask this?
Also, it would be more desirable to display the first name only from my database. But we can focus on the task at hand.