reference a .css file with thymeleaf in spring mvc

后端 未结 2 492
借酒劲吻你
借酒劲吻你 2021-02-08 09:52

I am doing a project with spring MVC and Thymeleaf. I have a question about how I should reference my CSS files if I have this folder structure:

src
  main
             


        
2条回答
  •  甜味超标
    2021-02-08 10:28

    You will need to use th:href attribute for referring css files. Here is a sample from thymeleaf tutorial. If thymeleaf can not evaluate th:href value, it defaults to href value.

    
        Good Thymes Virtual Grocery
        
        
     
    

提交回复
热议问题