Thymeleaf + CSS+SpringBoot

前端 未结 3 1353
别跟我提以往
别跟我提以往 2020-12-03 07:06

I have a problem with CSS and Thymeleaf.

In my Spring boot app, I have this structure:

  • src/main/resource/static/css (for css files)
  • src/main/r
3条回答
  •  北荒
    北荒 (楼主)
    2020-12-03 07:52

    Move your template folder right under resources:

    src/main/resources/static/css (for CSS files);
    src/main/resources/templates (for HTML templates).
    

    Then correct the link tag as follows (relative or absolute):

    
    
    

    The old solution with static in front doesn't work for me.

提交回复
热议问题