0

Directory structure

enter image description here

I try include css in profile.html

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

But this doesn't work

My Application class

@SpringBootApplication
class Application

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

P.S. Sorry for my English

Danil
  • 165
  • 7

1 Answers1

0

this is a good example if you are trying to start with static content with jsp pages.

I hope this can help

spring-boot-hello-world-example-jsp

Ali Akbarpour
  • 958
  • 2
  • 18
  • 35