IDEA2025 thymeleaf引入静态资源文件

一、项目结构

二、放置静态资源

将CSS、JS和Image 文件放在src/main/webapp/目录css,js,images下 。

在Thymeleaf模板中,可以使用Thymeleaf的URL表达式来引用这些静态资源。

html 复制代码
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <link rel="stylesheet" href="css/index.css"/>
    <script src="js/index.js"></script>

<!--    URL表达式-->
<!--    <link rel="stylesheet" th:href="@{/css/index.css}"/>-->
</head>
<body>
欢迎页面!<p/>
<h1 th:text="${hello}">Hello</h1>
<button onclick="my1()">Click</button>
<a href="javascript:my2()"><img src="images/woman.jpeg" height="200px" width="200px"> </a>
<a href="javascript:my3()"><img th:src="@{/images/2.png}" height="200px" width="200px"> </a>

</body>
</html>

三、运行效果

相关推荐
rannn_1118 小时前
【力扣hot100】链表专题|160、206、234、141、142
java·算法·leetcode·链表·面试·开发
IKUN家族10 小时前
Spring IoC&DI
java·spring·rpc
山荷枝11 小时前
03-框架--Spring
java·后端·spring
ChaHae-In11 小时前
SpringBoot统一功能处理
java·spring boot·后端
coder!mq12 小时前
说几个常见的语法糖?
java·开发语言·算法
gugucoding12 小时前
38. 【Java】Stream API(下):高级操作与性能
java·开发语言
心平气和量大福大12 小时前
android-实例-蒲公英-更新与安装-5-签名与生成APK
android·java·开发语言
9523613 小时前
Spring-cloud配置中心
java·spring·spring cloud·微服务
ydd10010013 小时前
寻找两个正序数组的中位数 Java 题解,二分分割详解
java·开发语言
真上帝的左手14 小时前
10. 软件设计&架构-Spring Security 7 整合CAS SSO 单点登录
java·spring·架构·sso