Thymeleaf 是一个现代的服务器端 Java 模板引擎,用于 Web 和独立环境。Spring 是一个开源的 Java 应用框架,广泛用于构建企业级应用。结合 Thymeleaf 和 Spring 可以方便地在前端页面中展示动态内容。
要在 Thymeleaf + Spring 中显示本地磁盘中的图像,可以通过以下步骤实现:
src/main/resources/static
目录下。如果需要从本地磁盘读取图像,可以配置一个自定义的静态资源路径。src/main/resources/static
目录下。如果需要从本地磁盘读取图像,可以配置一个自定义的静态资源路径。<img>
标签引用图像。<img>
标签引用图像。@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/images/**")
.addResourceLocations("file:/path/to/your/images/");
}
}
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Image Example</title>
</head>
<body>
<img th:src="@{/images/example.jpg}" alt="Example Image"/>
</body>
</html>
通过以上步骤和示例代码,你应该能够在 Thymeleaf + Spring 应用中成功显示本地磁盘中的图像。
领取专属 10元无门槛券
手把手带您无忧上云