91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot中關于static和templates的注意事項以及webjars的配置

發布時間:2020-10-03 14:54:39 來源:腳本之家 閱讀:196 作者:裴星宙 欄目:編程語言

1. 默認情況下, 網頁存放于static目錄下, 默認的"/"指向的是~/resouces/static/index.html文

2. 如果引入了thymeleaf, 則默認指向的地址為~/resouces/templates/index.html

 <dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>

代碼結構:

SpringBoot中關于static和templates的注意事項以及webjars的配置

3.在引入thymeleaf后, 如果仍需要訪問~/static/index.html, 則可以使用重定向

return "redirect:/index.html"

代碼樣例:

 import org.springframework.stereotype.Controller;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import java.io.IOException;
 @Controller
 public class HomeCtrl {
   @GetMapping("/")
   public String homePage(Model model, HttpServletRequest request, HttpServletResponse response) throws IOException {
     return "/index";
   }
   @RequestMapping("/static")
   public String navigatorToStatic() {
     return "redirect:/static.html";
   }
 <!DOCTYPE html>
 <html>
 <head>
   <script src="webjars/jquery/3.1.1/jquery.min.js"></script>
   <script src="webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script>
   <link rel="stylesheet" href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" />
 </head>
 <body>
 <div class="container"><br/>
   <div class="alert alert-success">
     Hello, <strong>BootStarp & WebJars!</strong>
   </div>
 </div>
 </body>
 </html>

4. HTML中引入webjars時, 需導入類似下面的包

 <dependency>
  <groupId>org.webjars</groupId>
  <artifactId>bootstrap</artifactId>
  <version>3.3.7</version>
 </dependency>
 <dependency>
  <groupId>org.webjars</groupId>
  <artifactId>jquery</artifactId>
  <version>3.1.1</version>
 </dependency>

5. HTML樣例

 <!DOCTYPE html>
 <html>
 <head>
   <script src="webjars/jquery/3.1.1/jquery.min.js"></script>
   <script src="webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script>
   <link rel="stylesheet" href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" />
 </head>
 <body>
 <div class="container"><br/>
   <div class="alert alert-success">
     Hello, <strong>BootStarp & WebJars!</strong>
   </div>
 </div>
 </body>
 </html>

6. 結果:

SpringBoot中關于static和templates的注意事項以及webjars的配置

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南漳县| 丹东市| 迁西县| 五峰| 崇明县| 永昌县| 岫岩| 安远县| 武平县| 珲春市| 宁陕县| 石狮市| 鸡西市| 道孚县| 北川| 怀来县| 西平县| 延寿县| 玛纳斯县| 保山市| 静乐县| 三门峡市| 原平市| 利辛县| 漯河市| 南陵县| 年辖:市辖区| 夹江县| 临泉县| 四会市| 朔州市| 台北县| 三都| 武功县| 建水县| 洛川县| 延津县| 馆陶县| 德格县| 河津市| 筠连县|