码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot+Thymeleaf->问题1

时间:2018-04-25 17:13:44      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:springboot   thymeleaf   

H5页面

  <img th:src="files+‘/‘+${avatar}" ></img>
 <span th:text="${session.user.userName}+‘,您好!‘">张三,您好</span> 

服务端:

类上面

@RequestMapping("/files")

方法上面

@GetMapping("/{filename:.+}")
        @ResponseBody
        public ResponseEntity<Resource> serveFile(@PathVariable String filename) {
                Resource file = storageService.loadAsResource(filename);
                return ResponseEntity.ok().header(HttpHeaders.CONTENT_DISPOSITION,
                                "attachment; filename=\"" + file.getFilename() + "\"").body(file);
        }

 主要是 url 拼接问题

SpringBoot+Thymeleaf->问题1

标签:springboot   thymeleaf   

原文地址:http://blog.51cto.com/360douruanliang/2107760

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!