时间:2021-05-19
springboot配置本地资源映射路径需要配置一下映射资源位置,下面来介绍一下过程。
1.添加配置类
package org.jcut.tools;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;@Componentpublic class MvcConfing implements WebMvcConfigurer { @Value("${imgpath}") String path; @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //当请求服务器中带有/imgs/的时候就是到指定路径中找出对应名字对应图片,其中**就代表匹配多层路径下的名字registry.addResourceHandler("/imgs/**").addResourceLocations("file:"+path); }}2.图片上传代码
//添加展示图片 String t_img=UUID.randomUUID().toString();//商品展示图片id boolean flag=false; for(MultipartFile ff:file1) { String tImgId=UUID.randomUUID().toString();//写入图片名字的时候最好把获取图片映射名称写进去,方便获取图片 timg.insert(new TImg(tImgId, t_img, "imgs/"+tImgId+".jpg")); try { ff.transferTo(new File(path+tImgId+".jpg")); flag=true; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
了解过spring-Boot这个技术的,应该知道Spring-Boot的核心配置文件application.properties,当然也可以通过注解自定义配置文
问题描述在spring-boot启动时,希望能执行相应的sql文件来初始化数据库。使用配置文件初始化数据库可以在spring-boot的配置文件applicat
一)spring-boot-starter命名规则自动配置模块命名规则:xxx-spring-boot,如:aspectlog-spring-boot启动器命名
配置方法基于当前的1.5.2.RELEASE的SpringBoot。依照官方文档,如果增加了如下依赖的配置,或者类路径中存在spring-boot-starte
SpringBoot对文件上传做了简化,基本做到了零配置,我们只需要在项目中添加spring-boot-starter-web依赖即可。单文件上传1,代码编写(