我對Spring很陌生,無法訪問我的資源。我使用Spring + Thymeleaf和我directionary結構是:Spring:找不到資源
src
- main
- java
- Application.java
- controller
- LanchController.java
- ...
- resources
- css
- test.css
- templates
- account.html
- ...
加載應用程序正確,但HTML模板沒有找到CSS等 account.html:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="/css/test.css"/>
</head>
<body>
<p>Hello, User!</p>
</body>
</html>
我已經嘗試了很多路徑,如../css/...
或/resources/css/..
,但沒有任何效果。我希望有一個人可以幫助我。我按照這個教程:https://spring.io/guides/gs/serving-web-content/
問候 Chryb
是視圖解析器在WebConfig – 2014-10-20 08:47:42