国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Ueditor與SpringMVC整合

linkin / 1285人閱讀

摘要:目的本文旨在整合百度前端富文本與,使用作為的后端,提供上傳圖片等后臺相關的功能,即使用替換官方提供的后臺方式。

目的

本文旨在整合百度前端富文本Ueditor與SpringMVC,使用Spring Controller作為Ueditor的后端,提供上傳圖片等后臺相關的功能,即使用SpringMVC替換官方提供的JSP后臺方式。

步驟

創建web工程,本文以maven進行創建和管理,最終目錄結構如下:

創建Ueditor統一后臺Controller服務

</>復制代碼

  1. import org.apache.commons.io.FileUtils;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.util.ResourceUtils;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RequestParam;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7. import org.springframework.web.multipart.MultipartFile;
  8. import javax.servlet.http.HttpServletRequest;
  9. import java.io.File;
  10. import java.io.IOException;
  11. import java.util.HashMap;
  12. import java.util.Map;
  13. @Controller
  14. @RequestMapping("/ued")
  15. public class UeditorController{
  16. @RequestMapping("/serverUrl")
  17. @ResponseBody
  18. public Object test(HttpServletRequest request,
  19. @RequestParam(value = "action") String action,
  20. @RequestParam(value = "upfile", required = false) MultipartFile file) throws Exception {
  21. switch (action) {
  22. case "config": // 加載返回ueditor配置文件conf/config.json
  23. return getConfig();
  24. case "uploadimage": // 上傳圖片
  25. return uploadImage(request, file);
  26. case "uploadvideo": // 上傳視頻
  27. return "視頻處理方法";
  28. case "uploadfile": // 上傳文件
  29. return "文件處理方法";
  30. default:
  31. return "無效action";
  32. }
  33. }
  34. private String getConfig() throws Exception {
  35. File file = ResourceUtils.getFile("classpath:conf/config.json");
  36. String json = FileUtils.readFileToString(file, "utf-8");
  37. return json;
  38. }
  39. private Map uploadImage(HttpServletRequest request, MultipartFile file) {
  40. String state = "SUCCESS";
  41. String savedDir = request.getSession().getServletContext().getRealPath("upload");
  42. String filename = file.getOriginalFilename();
  43. File filepath = new File(savedDir,filename);
  44. if (!filepath.getParentFile().exists()) {
  45. filepath.getParentFile().mkdirs();
  46. }
  47. // 寫到服務器路徑下,可擴展,比如上傳到云端或文件服務器
  48. file.transferTo(new File(savedDir + File.separator + filename));
  49. String uploadHttpUrl = "http://localhost:8083/upload"+ File.separator + filename;
  50. return resultMap(file, state, uploadHttpUrl);
  51. }
  52. private Map resultMap(MultipartFile file, String state, String uploadHttpUrl) {
  53. Map resMap = new HashMap();
  54. resMap.put("state", state); //"SUCCESS" 表示成功
  55. resMap.put("title", file.getOriginalFilename());
  56. resMap.put("original", file.getOriginalFilename());
  57. resMap.put("type", file.getContentType());
  58. resMap.put("size", file.getSize());
  59. resMap.put("url", uploadHttpUrl);
  60. return resMap;
  61. }
  62. }

資源加載幫助類

</>復制代碼

  1. import org.springframework.util.Assert;
  2. import org.springframework.util.ClassUtils;
  3. import org.springframework.util.StringUtils;
  4. import java.io.File;
  5. import java.io.FileNotFoundException;
  6. import java.net.MalformedURLException;
  7. import java.net.URI;
  8. import java.net.URISyntaxException;
  9. import java.net.URL;
  10. public class ResourceUtils{
  11. public static File getFile(String resourceLocation) throws FileNotFoundException {
  12. Assert.notNull(resourceLocation, "Resource location must not be null");
  13. if (resourceLocation.startsWith("classpath:")) {
  14. String path = resourceLocation.substring("classpath:".length());
  15. String description = "class path resource [" + path + "]";
  16. ClassLoader cl = ClassUtils.getDefaultClassLoader();
  17. URL url = cl != null ? cl.getResource(path) : ClassLoader.getSystemResource(path);
  18. if (url == null) {
  19. throw new FileNotFoundException(description + " cannot be resolved to absolute file path because it does not exist");
  20. }else{
  21. return getFile(url, description);
  22. }
  23. }else{
  24. try {
  25. return getFile(new URL(resourceLocation));
  26. }catch (MalformedURLException var5) {
  27. return new File(resourceLocation);
  28. }
  29. }
  30. }
  31. public static File getFile(URL resourceUrl, String description) throws FileNotFoundException {
  32. Assert.notNull(resourceUrl, "Resource URL must not be null");
  33. if (!"file".equals(resourceUrl.getProtocol())) {
  34. throw new FileNotFoundException(description + " cannot be resolved to absolute file path because it does not reside in the file system: " + resourceUrl);
  35. }else{
  36. try {
  37. return new File(toURI(resourceUrl).getSchemeSpecificPart());
  38. } catch (URISyntaxException var3) {
  39. return new File(resourceUrl.getFile());
  40. }
  41. }
  42. }
  43. public static URI toURI(URL url) throws URISyntaxException {
  44. return toURI(url.toString());
  45. }
  46. public static URI toURI(String location) throws URISyntaxException {
  47. return new URI(StringUtils.replace(location, " ", "%20"));
  48. }
  49. public static File getFile(URL resourceUrl) throws FileNotFoundException {
  50. return getFile(resourceUrl, "URL");
  51. }
  52. }

配置ueditor.config.js

把文件中的serverUrl: URL + "jsp/controller.jsp",修改為serverUrl: "/ued/serverUrl" 即可。

效果

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/94194.html

相關文章

  • UeditorSpringMVC整合

    摘要:目的本文旨在整合百度前端富文本與,使用作為的后端,提供上傳圖片等后臺相關的功能,即使用替換官方提供的后臺方式。 目的 本文旨在整合百度前端富文本Ueditor與SpringMVC,使用Spring Controller作為Ueditor的后端,提供上傳圖片等后臺相關的功能,即使用SpringMVC替換官方提供的JSP后臺方式。 步驟 創建web工程,本文以maven進行創建和管理,最...

    lbool 評論0 收藏0
  • ueditor筆記

    摘要:下載完后的包三將集成到項目第一步新建一個項目,并把引入到項目中。項目中配置其它上傳其它上傳如視頻上傳等等參考圖片上傳,修改即可。一、ueditor是什么 UEditor 是由百度「FEX前端研發團隊」開發的所見即所得富文本web編輯器,具有輕量,可定制,注重用戶體驗等特點,開源基于MIT協議,允許自由使用和修改代碼。 二、ueditor的下載 下載網址:https://ueditor.ba...

    番茄西紅柿 評論0 收藏0
  • Java3y文章目錄導航

    摘要:前言由于寫的文章已經是有點多了,為了自己和大家的檢索方便,于是我就做了這么一個博客導航。 前言 由于寫的文章已經是有點多了,為了自己和大家的檢索方便,于是我就做了這么一個博客導航。 由于更新比較頻繁,因此隔一段時間才會更新目錄導航哦~想要獲取最新原創的技術文章歡迎關注我的公眾號:Java3y Java3y文章目錄導航 Java基礎 泛型就這么簡單 注解就這么簡單 Druid數據庫連接池...

    KevinYan 評論0 收藏0
  • mybatis和springMVC整合及其中的問題

    摘要:的整合大致結構中放置的配置文件,由于這個例子很簡單,所以配置得比較簡單。在與的整合中,在這里不用配置,因為在整合包中有的掃描類。中配置的是和整合的配置。其中包括數據源數據池的配置的配置掃描器的配置還有事務的配置。所以將改了就解決問題了 1. springMVC+spring+mybatis的整合大致結構: showImg(https://segmentfault.com/img/bVb...

    EscapedDog 評論0 收藏0
  • Java后端

    摘要:,面向切面編程,中最主要的是用于事務方面的使用。目標達成后還會有去構建微服務,希望大家多多支持。原文地址手把手教程優雅的應用四手把手實現后端搭建第四期 SpringMVC 干貨系列:從零搭建 SpringMVC+mybatis(四):Spring 兩大核心之 AOP 學習 | 掘金技術征文 原本地址:SpringMVC 干貨系列:從零搭建 SpringMVC+mybatis(四):Sp...

    joyvw 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<