CSS not loading in Spring Boot

前端 未结 8 2171
渐次进展
渐次进展 2020-12-05 00:12

I am new to spring frame work and spring boot.I am trying to add the static html file with CSS,javascript,js. the file structure is

8条回答
  •  旧巷少年郎
    2020-12-05 01:17

    This is what worked for me after many attempts:

    1. css location: /resources/static/css/stylesheet.css
    2. link path in html: th:href="@{/css/stylesheet.css}"
    3. WebSecurityConfig:
      @Override
      public void configure(WebSecurity web) throws Exception {
          web.ignoring().antMatchers("/css/**");
      }
      

提交回复
热议问题