Spring MVC 不会加载静态内容

Spring MVC won't load static content

我是 Spring 的新手,我想加载一些 css 和 js 到视图中。

静态内容现在在 src/main/resources/static/... 中,但是当我导航到 localhost:8080/css/test.css 时,它给了我一个 404 错误..

我不使用任何 xml 配置文件。

我的项目结构:

更新:申请class

package com.exstodigital.photofactory;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

更新:build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
    }
}

group 'PTS4'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-thymeleaf")
    compile("org.springframework.boot:spring-boot-devtools")
    testCompile("junit:junit")
}

一些控制器(只是测试东西):

package com.exstodigital.photofactory;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;

@Controller
//@Controller
public class MainController {

    //@ResponseBody
    @RequestMapping("/greeting/{name}/{hoi}")
    public String greeting(@PathVariable("name") String name, @PathVariable("hoi") String hoi) {
        //model.addAttribute("message", "BERICHT");

        return name;
    }

    @RequestMapping("/test")
    public String test() {
        return "test";
    }
}

你的结构是正确的。不要忘记在 运行 bootRun 之前完成 gradle clean 任务。