Apos resolver o problema com as dicas do instrutor Rafael Rollo, segui com as aulas e após fazer a configuração do Spring Security meu css quebrou novamente dando o seguinte erro no console: 0Refused to apply style from '' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
Refused to apply style from 'http://localhost:8080/casadocodigo/login' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
Meu código de configuração do security está dessa forma:
@EnableWebMvcSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter{
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/produtos/form").hasRole("ADMIN")
.antMatchers("/carrinho").permitAll()
.antMatchers(HttpMethod.POST, "/produtos").hasRole("ADMIN")
.antMatchers(HttpMethod.GET, "/produtos").hasRole("ADMIN")
.antMatchers("/produtos/**").permitAll()
.antMatchers("/").permitAll()
.anyRequest().authenticated()
.and().formLogin();
}
}
Minhas importações na JSP ficou da seguinte maneira:
<c:set var="context" value="${pageContext.request.contextPath}" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="icon" href="//cdn.shopify.com/s/files/1/0155/7645/t/177/assets/favicon.ico?11981592617154272979" type="image/ico" />
<link href="https://plus.googlecom/108540024862647200608" rel="publisher" />
<title>Livros de Java, SOA, Android, iPhone, Ruby on Rails e muito mais - Casa do Código</title>
<link href="${contextPath}resources/css/cssbase-min.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' />
<link href="${context}/resources/css/fonts.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/fontello-ie7.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/fontello-embedded.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/fontello.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/layout-colors.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/responsive-style.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/guia-do-programador-style.css" rel="stylesheet" type="text/css" media="all" />
<link href="${context}/resources/css/produtos.css" rel="stylesheet" type="text/css" media="all" />
<link rel="canonical" href="http://www.casadocodigo.com.br/" />
<link href="${context}resources/css/book-collection.css" rel="stylesheet" type="text/css" media="all" />
Add: segue o link do tópico anterior https://cursos.alura.com.br/forum/topico-pagina-quebrada-66388 Add2: removi todas as configurações do spring security e o css voltou a funcionar perfeitamente