Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Pasta Static não é reconhecida!

Olá,

Fiz a configuração do thymeleaf e a pasta resource funcionou, porem meus arquivos css não funcionam dentro da pasta Static!

Segue a imagem

http://imgur.com/a/cXgRz

No FireBug aparece a seguinte mensagem de erro:

http://imgur.com/a/NGZsf

Segue os codigos abaixo

Controller

package io.babyone.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HomeController {

    @RequestMapping(value="", method= RequestMethod.GET)
    public String home() {
        return "home";
    }


}

Arquivo Home

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Scale | Web Application</title>
  <meta name="description" content="app, web app, responsive, admin dashboard, admin, flat, flat ui, ui kit, off screen nav" />
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 
  <link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
  <link rel="stylesheet" href="css/animate.css" type="text/css" />
  <link rel="stylesheet" href="css/font-awesome.min.css" type="text/css" />
  <link rel="stylesheet" href="css/icon.css" type="text/css" />
  <link rel="stylesheet" href="css/font.css" type="text/css" />
  <link rel="stylesheet" href="css/app.css" type="text/css" />  
    <!--[if lt IE 9]>
    <script src="js/ie/html5shiv.js"></script>
    <script src="js/ie/respond.min.js"></script>
    <script src="js/ie/excanvas.js"></script>
  <![endif]-->
</head>
<body class="" >

...
2 respostas
solução!

Quando você acessa http://localhost8080/css/bootstrap.css não parece nada?

Oi Arthur,

Desculpa, esqueci de posta que já resolvi. Foi um pequeno problema na minha configuração do Spring Security!

Em todo caso, obrigado pela atenção!