博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ueditor1_4_3-utf8-jsp配置及自定义,结合struts2
阅读量:4963 次
发布时间:2019-06-12

本文共 2641 字,大约阅读时间需要 8 分钟。

1、ueditor.config.js 中,第一行

window.UEDITOR_HOME_URL = "/bss/js/ueditor/";

指定根目录

2、自定义Filter

package com.baidu.ueditor.filter;import javax.servlet.FilterChain;  import javax.servlet.ServletRequest;  import javax.servlet.ServletResponse;  import javax.servlet.http.HttpServletRequest;    import org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter;    public class UEditorFilter extends StrutsPrepareAndExecuteFilter{        public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) {          HttpServletRequest request = (HttpServletRequest) req;          String url = request.getRequestURI();          try{              if (url.length() > 10 && "imageUp.jsp".equals(url.substring(url.length()-11))) {
//umeditor chain.doFilter(req, res); }if (url.contains("/bss/js/ueditor/jsp/controller.jsp")) { //ueditor chain.doFilter(req, res); } else { super.doFilter(req, res, chain); } }catch(Exception e){ e.printStackTrace(); } } }

3、配置web.xml

StrutsPrepareFilter
com.baidu.ueditor.filter.UEditorFilter
StrutsPrepareFilter
/*

经过以上配置富文本编辑器 就可以用了

4、使用示例

    My JSP 'ueditordemo.jsp' starting page        

5、自定义返回信息

在com.baidu.ueditor.define.AppInfo.java 中

public static final int FULL_DISK = 801;//磁盘空间已满put(AppInfo.FULL_DISK, "\u8d85\u51fa\u78c1\u76d8\u7a7a\u95f4\u989d\u5ea6\uff0c\u4e0d\u5141\u8bb8\u4e0a\u4f20\u3002");

使用时:

//磁盘空间已满,返回信息return new BaseState(false, AppInfo.FULL_DISK);

6、自定义配置属性并读取

在config.json自定义属性

/* 自定义配置属性 add by xxx */"userConfigPath": false,

在com.baidu.ueditor.ConfigManager.java中读取配置

public Map
getConfig ( int type ) { Map
conf = new HashMap
(); String savePath = null; conf.put( "savePath", savePath ); conf.put( "rootPath", this.rootPath ); conf.put( "userConfigPath", this.jsonConfig.getBoolean( "userConfigPath" ));//add by xxx return conf; }

7、自定义文件存储路径

文件存储路径可以在配置文件中修改,也可以自定义

com.baidu.ueditor.upload.BinaryUploader.java

savePath = PathFormat.parse(savePath, originFileName);//返回到页面中的图片url String physicalPath = (String) conf.get("rootPath") + savePath;//图片存储的物理路径

根据自己的需求修改这两项的值,可以完成自定义。

 

转载于:https://www.cnblogs.com/wudicaidou/p/4699530.html

你可能感兴趣的文章
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
hdu 3183 A Magic Lamp 贪心
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
面试题14 调整数组顺序使奇数位于偶数前面
查看>>
grid网格布局
查看>>
flask简单的注册功能
查看>>
JSP常用标签
查看>>
dashucoding记录2019.6.7
查看>>
IOS FMDB
查看>>
编码总结,以及对BOM的理解
查看>>
九涯的第一次
查看>>