How to implement a login page in a GWT app?

后端 未结 3 1164
Happy的楠姐
Happy的楠姐 2020-12-30 06:15

My WebApp needs to authenticate user before allowing any sort of access. The scenario I\'m trying to implement is a login page with username and password fields. Once user h

相关标签:
3条回答
  • 2020-12-30 06:41

    Have you looked at this page ?

    It describes how to do the following:

    • Create a 'login' page that is based on user/password authentication.
    • Store this data in a secure fashion on your server.
    • Allow users to 'remain logged in' for as long as you want so they don't have to enter their user name and password every time.
    • Make 'auto-complete' features of most modern browsers work with your GWT's login page. Discussion on adding more security with either HTTPS or fancy hashing algorithm.
    0 讨论(0)
  • 2020-12-30 06:41

    I'm not sure how well secure your application has to be... but I would suggest leaving that piece of work to spring security.

    You could make a regular login.html page which would, upon successful login, redirect user to the "real" gwt app.

    Check out this article: http://code.google.com/webtoolkit/articles/security_for_gwt_applications.html

    0 讨论(0)
  • 2020-12-30 06:47

    Not tailored directly for GWT (can still integrate with it), this is a great tutorial for implementing a secure login system.

    http://drdobbs.com/web-development/231002659

    0 讨论(0)
提交回复
热议问题