SpringBoot整合富文本編輯器(UEditor)


UEditro是一款比較好用的富文本編輯器,所謂的富文本編輯器就是和服務器交互的數據不是普通的字符串文件,而是一些內容包含比較廣的字符串,一般是指的html頁面,目前比較好用的是百度的UEditor,到官方網站下載:
http://ueditor.baidu.com/website/download.html
這里寫圖片描述

1、首先在項目下新建ueditor文件夾,吧下載的ueditor文件里面的內容全部拷貝進去;
這里寫圖片描述

2、在我們需要使用富文本編輯器的頁面里面引入ueditor:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <script src="<%=path %>/ueditor/ueditor.config.js"></script> <script src="<%=path %>/ueditor/ueditor.all.min.js"></script> <script src="<%=path %>/ueditor/lang/zh-cn/zh-cn.js"></script> <script type="text/javascript"> var editor = UE.getEditor('container'); alert(editor); </script> </head> <body> <textarea id="container" name="content" type="text/plain">這里寫你的初始化內容</textarea> </body> </html>

 

啟動程序,訪問效果如下:
這里寫圖片描述

在index.jsp增加如下代碼,將數據提交到服務器:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <script src="<%=path %>/ueditor/ueditor.config.js"></script> <script src="<%=path %>/ueditor/ueditor.all.min.js"></script> <script src="<%=path %>/ueditor/lang/zh-cn/zh-cn.js"></script> <script type="text/javascript"> var editor = UE.getEditor('container'); function postDate() { } </script> </head> <body> <form action="<%=path %>/news/addNews.do" method="post"> <textarea id="container" name="content" type="text/plain">這里寫你的初始化內容</textarea> <button id="btn" onclick="postDate()">提交</button> </form> </body> </html>

controller寫法:

package com.xingxue.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/news") public class NewsController { @RequestMapping("/addNews.do") public String addNews(String content) { System.out.println(content); return "ok"; } }

 

測試結果

這里寫圖片描述

此時,我們服務器已經能收到數據,就可以存入數據庫,或者生產靜態html文件,

4、解決圖片問題:

先編寫好接收圖片的controller

package com.xingxue.controller; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.HashMap; import java.util.Map; import java.util.Random; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.util.FileCopyUtils; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.multipart.MultipartFile; @Controller @RequestMapping("/news") public class NewsController { @RequestMapping("/addNews.do") public String addNews(String content) { System.out.println(content); return "ok"; } @RequestMapping("/upload.do") @ResponseBody public Map<String, Object> images (MultipartFile upfile, HttpServletRequest request, HttpServletResponse response){ Map<String, Object> params = new HashMap<String, Object>(); System.out.println("1111111111111"); try{ String basePath = "e:/img"; //與properties文件中lyz.uploading.url相同,未讀取到文件數據時為basePath賦默認值 String visitUrl = "/upload/"; //與properties文件中lyz.visit.url相同,未讀取到文件數據時為visitUrl賦默認值 String ext = "abc" + upfile.getOriginalFilename(); String fileName = String.valueOf(System.currentTimeMillis()).concat("_").concat(""+new Random().nextInt(6)).concat(".").concat(ext); StringBuilder sb = new StringBuilder(); //拼接保存路徑 sb.append(basePath).append("/").append(fileName); visitUrl = visitUrl.concat(fileName); File f = new File(sb.toString()); if(!f.exists()){ f.getParentFile().mkdirs(); } OutputStream out = new FileOutputStream(f); FileCopyUtils.copy(upfile.getInputStream(), out); params.put("state", "SUCCESS"); params.put("url", visitUrl); params.put("size", upfile.getSize()); params.put("original", fileName); params.put("type", upfile.getContentType()); } catch (Exception e){ params.put("state", "ERROR"); } return params; } }

 

該接收圖片有幾個細節:
第一: MultipartFile upfile 參數名必須和我們ueditro配置文件名字一樣:
這里寫圖片描述

返回數據類型不能錯誤:
這里寫圖片描述

state:上傳圖片的狀態
url:訪問圖片的路徑

ueditro配置文件修改:
這里寫圖片描述

更改jspdiamante:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <script src="<%=path %>/ueditor/ueditor.config.js"></script> <script src="<%=path %>/ueditor/ueditor.all.min.js"></script> <script src="<%=path %>/ueditor/lang/zh-cn/zh-cn.js"></script> <script type="text/javascript"> var editor = UE.getEditor('container'); UE.Editor.prototype._bkGetActionUrl = UE.Editor.prototype.getActionUrl; UE.Editor.prototype.getActionUrl = function(action){ if(action == '/news/upload.do'){ return '/news/upload.do'; }else{ return this._bkGetActionUrl.call(this, action); } } </script> </head> <body> <form action="<%=path %>/news/addNews.do" method="post"> <textarea id="container" name="content" type="text/plain">這里寫你的初始化內容</textarea> <button id="btn" onclick="postDate()">提交</button> </form> </body> </html>

注意:

return ‘/news/upload.do’; //ssm要帶項目名, springboot不需要帶項目名

測試效果:
這里寫圖片描述

注意:圖片的路徑我們可以用一個虛擬的圖片服務器來模擬,需要修改controller的代碼

package com.xingxue.controller; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.HashMap; import java.util.Map; import java.util.Random; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.util.FileCopyUtils; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.multipart.MultipartFile; @Controller @RequestMapping("/news") public class NewsController { @RequestMapping("/addNews.do") public String addNews(String content) { System.out.println(content); return "ok"; } @RequestMapping("/upload.do") @ResponseBody public Map<String, Object> images (MultipartFile upfile, HttpServletRequest request, HttpServletResponse response){ Map<String, Object> params = new HashMap<String, Object>(); System.out.println("1111111111111"); try{ String basePath = "e:/img"; //與properties文件中lyz.uploading.url相同,未讀取到文件數據時為basePath賦默認值 String ext = "abc" + upfile.getOriginalFilename(); String fileName = String.valueOf(System.currentTimeMillis()).concat("_").concat(""+new Random().nextInt(6)).concat(".").concat(ext); StringBuilder sb = new StringBuilder(); //拼接保存路徑 sb.append(basePath).append("/").append(fileName); //寫到e盤 File f = new File(sb.toString()); if(!f.exists()){ f.getParentFile().mkdirs(); } OutputStream out = new FileOutputStream(f); FileCopyUtils.copy(upfile.getInputStream(), out); //虛擬圖片服務器 String visitUrl = "http://localhost:9999/ssm/"; visitUrl = visitUrl.concat(fileName); f = new File("D:/server/project/ssm/" + fileName); out = new FileOutputStream(f); FileCopyUtils.copy(upfile.getInputStream(), out); params.put("state", "SUCCESS"); params.put("url", visitUrl); params.put("size", upfile.getSize()); params.put("original", fileName); params.put("type", upfile.getContentType()); } catch (Exception e){ e.printStackTrace(); params.put("state", "ERROR"); } return params; } }


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM