Spring Boot - 不能包含静态资源

时间:2017-11-11 15:15:25

标签: css spring spring-boot kotlin

目录结构

enter image description here

我尝试在profile.html中包含css

<link th:href="@{css/profile.css}" rel="stylesheet" />

但这不起作用

我的申请类

@SpringBootApplication
class Application

fun main(args: Array<String>) {
    SpringApplication.run(Application::class.java, *args)
}

P.S。对不起我的英文

1 个答案:

答案 0 :(得分:0)

如果您尝试使用jsp页面开始使用静态内容,这是一个很好的示例。

我希望这可以提供帮助

spring-boot-hello-world-example-jsp