Java springboot B2B2C o2o多用戶商城 springcloud架構使用Spring Security安全控制

準備工做

首先,構建一個簡單的Web工程,以用於後續添加安全控制,作爲基礎工程。html

Web層實現請求映射

@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
<!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.htmlspring

<!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頁面。安全

完整項目的源碼來源 技術支持1791743380bash

相關文章
相關標籤/搜索