我正在使用带有Freemarker模板引擎的java的spark web框架。我有这样的HTML代码:
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
<!-- Custom styles for dashboard -->
<link rel="stylesheet" href="dashboard.css">
<!-- Optional theme -->
<link rel="stylesheet" href="bootstrap-theme.min.css">
当我想要包含放在我的资源/公共目录中的这些css文件时,Spark会抛出这个:
[qtp765086197-18] INFO spark.http.matching.MatcherFilter - The requested route [/bootstrap-theme.min.css.map] has not been mapped in Spark for Accept: [null]
我不知道这是不是一个错误,因为一切都很好,但我怎么能摆脱这个?
答案 0 :(得分:0)
错误清楚地表明问题出在.map
文件中。
您必须将其添加到您的文件夹中,或者使用缩小版bootstrap-theme
。
此外,您可以使用开发人员工具查看是否正确加载了css文件。