Spring启动应用程序显示404静态文件

时间:2017-05-26 04:22:24

标签: spring-boot

我在spring boot中遇到静态文件问题 这是一个简单的例子,我使用了自动配置

  1. Application.properties

    spring.profiles.active=dev
    server.context-path=/auth
    logging.level.org.springframework.web=DEBUG
    logging.level.com.arch=info
    
    spring.http.encoding.charset=UTF-8
    spring.mvc.static-path-pattern=/**
    
    
    spring.thymeleaf.cache=false
    spring.thymeleaf.content-type=text/html
    spring.thymeleaf.mode=HTML5
    spring.thymeleaf.prefix=classpath:/templates/
    spring.thymeleaf.suffix=.html
    spring.thymeleaf.encoding=utf-8
    
  2. 页链路

    th:href="@{jquery-1.10.2.min.js}" rel="stylesheet" 
    
  3. 目录

    resources 
      static
        jquery-1.10.2.min.js
    templates
      index.html
    
  4. 网址

      

    本地主机:8080 / AUTH /静态/ jquery的-1.10.2.min.js

         

    本地主机:8080 / AUTH / jquery的-1.10.2.min.js

0 个答案:

没有答案