zoukankan      html  css  js  c++  java
  • 使用Spring Security安全控制(二十六)

    准备工作

    首先,构建一个简单的Web工程,以用于后续添加安全控制,也可以用之前Chapter3-1-2做为基础工程。若对如何使用Spring Boot构建Web应用,可以先阅读《Spring Boot开发Web应用》一文。

    Web层实现请求映射

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    @Controller
    public class HelloController {
     
        @RequestMapping("/")
        public String index() {
            return "index";
        }
     
        @RequestMapping("/hello")
        public String hello() {
            return "hello";
        }
     
    }

      

    • /:映射到index.html
    • /hello:映射到hello.html

    实现映射的页面

    • src/main/resources/templates/index.html
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      <!DOCTYPE html>
      <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
          <head>
              <title>Spring Security入门</title>
          </head>
          <body>
              <h1>欢迎使用Spring Security!</h1>
              <p>点击 <a th:href="@{/hello}">这里</a> 打个招呼吧</p>
          </body>
      </html>

        

    • src/main/resources/templates/hello.html
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      <!DOCTYPE html>
      <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
            xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
          <head>
              <title>Hello World!</title>
          </head>
          <body>
              <h1>Hello world!</h1>
          </body>
      </html>

        

      可以看到在index.html中提供到/hello的链接,显然在这里没有任何安全控制,所以点击链接后就可以直接跳转到hello.html页面。

  • 相关阅读:
    2020前端学习路线 之完结篇
    axios 请求超时,设置重新请求的完美解决方法
    如何终止前端发起的请求?
    轮询与长轮询
    最全React技术栈技术资料汇总(收藏)
    React 服务端渲染完美的解决方案
    将数组格式的字符串转换成数组
    Cannot read property 'map' of undefined
    计算机编码方式简介
    python01之文件处理
  • 原文地址:https://www.cnblogs.com/MaxElephant/p/10232216.html
Copyright © 2011-2022 走看看