github項目地址:https://github.com/H-Designer/SpringBootcss
初學SpringBoot,記錄一下本身的學習過程,同時也進行簡單項目的總結(這裏全是對這個項目進行的我的總結),或許能夠說是這個程序的業務邏輯的梳理html
這個項目就是一個簡單的增刪改的員工我的信息系統(前端使用的是thymeleaf),(這裏不涉及SpringBoot的最基本的框架的講解,是SpringBoot的項目實例)前端
下面就是我的對這個項目的總結,不當之處還請大佬們指出git
這一節總結項目的最開始的設定(項目跟路徑設定、項目首址設定)github
//http://localhost:8080/crud
##2.根據在controller中設置的首址映射,訪問固定的地址進行訪問程序(訪問到的是login頁面) @Controller public class IndexController { // 這是經過控制請求,在地址欄中沒有請求的時候,也跳到咱們想要的頁面,而不是經過springboot的首址映射直接跳到index頁面 @RequestMapping({"/","index.html"}) public String index(){ return "login"; } }
##3.根據在controller中設置的首址映射,訪問固定的地址進行訪問程序(訪問到的是login頁面) <!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>Signin Template for Bootstrap</title> <!-- Bootstrap core CSS --> <link th:href="@{asserts/css/bootstrap.min.css}" rel="stylesheet"> <!--<link href="asserts/css/bootstrap.min.css" rel="stylesheet">--> <!-- Custom styles for this template --> <!--<link href="asserts/css/signin.css" rel="stylesheet">--> <link th:href="@{asserts/css/signin.css}" rel="stylesheet"> </head> <body class="text-center"> <form class="form-signin" th:action="@{/user/login}" action="dashboard.html" th:method="post"> <img class="mb-4" th:src="@{asserts/img/bootstrap-solid.svg}" alt="" width="72" height="72"> <h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tip}"></h1> <!--判斷是否提示信息--> <p th:text="${mes}" style="color: red" th:if="${not #strings.isEmpty(mes)}"/> <label class="sr-only"th:text="#{login.username}"></label> <input type="text" name="username" class="form-control" th:placeholder="#{login.username}" required="" autofocus=""> <label class="sr-only"th:text="#{login.password}"></label> <input type="password" name="password" class="form-control" th:placeholder="#{login.password}" required=""> <div class="checkbox mb-3"> <label> <input type="checkbox" value="remember-me"> [[#{login.remember}]] </label> </div> <button class="btn btn-lg btn-primary btn-block" type="submit" th:text="#{login.btn}"></button> <p class="mt-5 mb-3 text-muted">© 2017-2018</p> <a class="btn btn-sm" th:href="@{/index.html(l='zh_CN')}">中文</a> <a class="btn btn-sm" th:href="@{/index.html(l='en_US')}">English</a> </form> </body> </html>
下一節總結項目的國際化語言設定,以及攔截器的設定:地址http://www.javashuo.com/article/p-agfpaxfj-km.htmlspring