mirror of
https://github.com/kekingcn/kkFileView.git
synced 2026-04-19 15:08:39 +00:00
28 lines
625 B
Java
28 lines
625 B
Java
package cn.keking.service.impl;
|
|
|
|
import cn.keking.service.FilePreview;
|
|
import cn.keking.utils.FileUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.ui.Model;
|
|
/**
|
|
* @author : kl
|
|
* @authorboke : kailing.pub
|
|
* @create : 2018-03-25 上午11:58
|
|
* @description:
|
|
**/
|
|
@Service
|
|
public class MediaFilePreviewImpl implements FilePreview {
|
|
|
|
@Autowired
|
|
FileUtils fileUtils;
|
|
|
|
@Override
|
|
public String filePreviewHandle(String url, Model model) {
|
|
model.addAttribute("mediaUrl", url);
|
|
return "media";
|
|
}
|
|
|
|
|
|
}
|