Skip to content

Commit 8bf0706

Browse files
authored
send redirect parameter fix
1 parent b287da9 commit 8bf0706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsp-questions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ for this, once the session is invalidated, in your respective jsp page add follo
445445
response.setHeader ("Expires", 0);
446446
response.setDateHeader ("Expires", -1);
447447
if(session.getAttribute("token")==null){
448-
response.sendRedirect("login.jsp");
448+
response.sendRedirect(request.getContextPath() + "/login.jsp");
449449
}
450450
%>
451451
```
@@ -478,4 +478,4 @@ _`token` can be any valid session attribute used for validation_
478478
#### Q. Which containers use a FlowLayout as their default layout?
479479
#### Q. What are peerless components?
480480
#### Q. Is there is any difference between a Scrollbar and a ScrollPane?
481-
#### Q. What is a lightweight and heavyweight component?
481+
#### Q. What is a lightweight and heavyweight component?

0 commit comments

Comments
 (0)