themyleaf 图片上传_springboot+thymeleaf 实现图片文件上传及回显

1. 创建一个springboot工程, 在此就不多说了(目录结构).

themyleaf 图片上传_springboot+thymeleaf 实现图片文件上传及回显_第1张图片

2. 写一个HTML页面

Title

[[${filename}]]

3. 配置application.properties文件, 在配置文件中声明图片的绝对路径及相对路径

server.port=8899

file.upload.path=F://images/

file.upload.path.relative=/images/**

4. 创建一个MyWebAppConfigurer java文件实现WebMvcConfigurer接口, 配置资源映射路径

注: 笔者使用的springboot版本为 2.1.6

import org.springframework.beans.factory.annotation.Value;

import org.springframework.context.annotation.Configuration;

import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;

import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**

* 资源映射路径

*/

@Configuration

public c

你可能感兴趣的:(themyleaf,图片上传)