Spring Cloud Spring Boot mybatis Distributed microservices Cloud Architecture (13) using Spring security control

Source: Internet
Author: User

Preparatory work

First, build a simple Web project that will be used to add security controls later, and if you are building a web app using spring boot, you can read the Spring Boot Development web App article first.

Web tier Implementation Request mapping

@Controller  Public class Hellocontroller {     @RequestMapping ("/")    public  String Index () {         return "Index";    }     @RequestMapping ("/hello")    public  String Hello () {        return "Hello";    }}
    • /: Map to Index.html
    • /hello: Map to Hello.html

Implementing a mapped page

    • Src/main/resources/templates/index.html
<! DOCTYPE html>

Src/main/resources/templates/hello.html

<! DOCTYPE html>      xmlns: SEC= "Http://www.thymeleaf.org/thymeleaf-extras-springsecurity3" >    

You can see the links provided in the index.html /hello , obviously there is no security control here, so click on the link to jump directly to the hello.html page. Source Source technical support for complete projects 1791743380

Spring Cloud Spring Boot mybatis Distributed microservices Cloud Architecture (13) using Spring security control

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.