aspose file tools
The moose likes JSP and the fly likes JSP: check if user is logged on Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "JSP: check if user is logged on" Watch "JSP: check if user is logged on" New topic
Author

JSP: check if user is logged on

Vivek Kr Agrawal
Ranch Hand

Joined: Sep 08, 2012
Posts: 33

I am creating a small project (CRUD) for my college in JSP. The problem is that a user can create,read,update and delete items only after he gets logged in. I have created all things and its working all fine. But how can I check that this is a logged user or not in my every jsp page.
If it is not a logged one then it should be redirected to index.jsp.
I know I have to session variables but don't know how to use it? Please also provide me the best coding practice to write this code once and include in all subsequent files.

Thanks in advance!!
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56529
    
  14

Servlet filter.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: JSP: check if user is logged on
 
Similar Threads
How to pass string value from jsp to java class
checking whether user logged in or not
showing pages based on roles
How to control static pages and dynamic pages
How to ristrict multiple login's at the same time using same username?