Spring Cloud Cloud architecture-SSO Single Sign-on OAuth2.0 logout process (3)

Source: Internet
Author: User

I based on the framework of the use of OAuth2.0 summary, drawing a user name + password to achieve OAuth2.0 login certification flowchart, today we look at the logout process:


Java code
  1. /**
  2. * User logoff
  3. * @param accesstoken
  4. * @return
  5. */
  6. @RequestMapping (value = "/user/logout", method = Requestmethod.post)
  7. Public Responsevo userlogout (@RequestHeader (value = "Accesstoken", required = true) String Accesstoken,
  8. @RequestHeader (value = "userid", required = true) Long userId) throws exception{
  9. Oauthaccesstoken Oauthaccesstoken = Usermgrservice.getoauthaccesstoken (Accesstoken);
  10. if (null = = Oauthaccesstoken) {
  11. return Userresponsecode.buildenumresponsevo (userresponsecode.response_code_oauth_accesstoken_empty, null  );
  12. }
  13. //delete Oauthtoken records
  14. Boolean result = Usermgrservice.revokeoauthtoken (Oauthaccesstoken);
  15. if (result) {
  16. return Userresponsecode.buildenumresponsevo (userresponsecode.response_return_code_success, null);
  17. }
  18. return Userresponsecode.buildenumresponsevo (Userresponsecode.response_code_system_error, null);
  19. }


I'm just writing some of the code out here, and we'll post all the code in detail for your reference, from creating a database to every process that executes it.

From now on, I will be documenting the process and essence of the recent development of the spring cloud micro-service cloud architecture to help more friends who are interested in developing the Spring cloud framework to explore the process of building the spring cloud architecture and how to use it in enterprise projects. Source Source

Spring Cloud Cloud architecture-SSO Single Sign-on OAuth2.0 logout process (3)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.