SpringBootMVC的增刪改查以及Jsp頁面展示
阿新 • • 發佈:2019-01-10
目錄
1、demo結構
2、Springboot專案修改html後不需要重啟
1、demo結構
demo整體結構
前臺頁面
新增頁面
編輯頁面
刪除頁面
2、Springboot專案修改html後不需要重啟
1)spring-boot-devtools
在pom中直接引入依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
2)設定以下兩項(第一項如已設定直接設定第二項)
1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,選中打勾 “Build project automatically” 。
2) 組合鍵:“Shift+Ctrl+Alt+/” ,選擇 “Registry” ,選中打勾 “compiler.automake.allow.when.app.running”