1. 程式人生 > >spring-boot 載入本地靜態資原始檔路徑配置

spring-boot 載入本地靜態資原始檔路徑配置

1.spring boot預設載入檔案的路徑是 
/META-INF/resources/ 
/resources/ 
/static/ 
/public/ 
這些目錄下面, 當然我們也可以從spring boot原始碼也可以看到 
Java程式碼  收藏程式碼
  1. private static final String[] CLASSPATH_RESOURCE_LOCATIONS = {  
  2.         "classpath:/META-INF/resources/""classpath:/resources/",  
  3.         "classpath:/static/""classpath:/public/" };  

所有本地的靜態資源都配置在了classpath下面了, 而非在webapp下了 


2. 
Html程式碼  收藏程式碼
  1. <%@ page language="java" contentType="text/html; charset=utf-8"  
  2.     pageEncoding="utf-8"%>  
  3. <!DOCTYPE html>  
  4. <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>  
  5. <html lang="zh-cn">  
  6. <head>  
  7. <meta charset="utf-8">  
  8. <meta http-equiv="X-UA-Compatible"
     content="IE=edge">  
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">  
  10. <meta name="description" content="">  
  11. <meta name="author" content="">  
  12. <title>使用者登入</title>  
  13. </head>  
  14. <!-- CSS件 -->  
  15. <link rel="stylesheet" href="/css/bootstrap.min.css"
    >  
  16. <link rel="stylesheet" href="/css/login.css">  
  17. <body>  
  18.     <div class="container">  
  19.         <form class="form-signin">  
  20.             <h2 class="form-signin-heading">Please sign in</h2>  
  21.             <input type="text" class="form-control" placeholder="Email address" required autofocus>   
  22.             <input type="password" class="form-control" placeholder="Password" required>   
  23.             <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>  
  24.         </form>  
  25.     </div>  
  26.     <script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>  
  27.     <script src="/js/bootstrap.min.js"></script>  
  28. </body>  
  29. </html>  


3.目錄結構詳見附件 

專案地址https://github.com/leelance/spring-boot-all