解决SpringBoot解析静态文件失败

解决SpringBoot解析静态文件失败

    • 原因
    • 解决

原因

从SpringBoot默认配置说明方案中得知SpringBoot将/**所有访问映射到以下目录

 - classpath:/static
 - classpath:/public
 - classpath:/resources
 - classpath:/META-INF/resources

解决

在引用的文件前加上根目录的符号“/”,前端页面就可以完美显示了。
例如:


<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>答疑社区title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" href="/css/bootstrap.min.css">
    <link rel="stylesheet" href="/css/bootstrap-theme.min.css">
    <script src="/js/bootstrap.min.js">script>
head>
<body>

body>
html>

你可能感兴趣的:(SpringBoot)