Session Tracking using J2EE

后端 未结 3 743
醉话见心
醉话见心 2021-01-27 18:25

I\'m trying to implement session tracking on my website. Basically I want the users to be able to login in my website using their username and their password, pass throw my webs

3条回答
  •  没有蜡笔的小新
    2021-01-27 18:47

    You can use Spring Security. It has all the features you require. Spring Security provides comprehensive security services for J2EE-based enterprise software applications.

    The framework will authenticate and authorize the user based on the configuration done in the framework. And will automatically save the user state in the session. You don't have to explicitly deal with sessions.

提交回复
热议问题