我正在使用 Springboot 和 Thymeleaf 创建一个项目。我配置了整个项目,找到了模板和页面,所以我的模板找不到 css 和 js 文件;
我使用的是Springboot版本1.4.2.RELEASE。
HTML
<link rel="stylesheet" th:href="@{/bootstrap/css/bootstrap.min.css}"/>
application.properties
# --- CONFIGURAÇÃO TYMELEAF ---
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.cache=false
spring.thymeleaf.content-type=text/html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.enabled=true
WebMvcConfigurerAdapter
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**")
.addResourceLocations("/resources/")
.addResourceLocations("/static/")
.addResourceLocations("/static/**")
.addResourceLocations("/resources/static/")
.addResourceLocations("/resources/static/**")
.addResourceLocations("/")
.addResourceLocations("/**");
}
文件夹
更新
我按照建议做了并删除了所有设置。所以这次我的页面打开了,所以它不会加载起始页面。
索引
<div class="content-wrapper" th:replace="/starter :: content">
</div>
起动
<div class="content-wrapper" th:frament="content">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Esse é o Prototipo do layout
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<h1>Oi eu sou goku!!</h1>
</section>
<!-- /.content -->
</div>
答案 0 :(得分:0)
试试这个,
fun Int simpleFunc(Int x) {
// do stuff
}
你不必在这里使用th:href。