springboot整合ueditor百度富文本编辑器详细教程

作者推荐使用layer编辑器,更加美观,文档地址
https://www.layui.com/doc/modules/layedit.html
第一步:到官方下载ueditor
https://ueditor.baidu.com/website/download.html(ueditor下载地址)
github项目地址https://github.com/yssyhw/springboot,下载后,运行访问http://localhost:8080/admin/test (防止大家懒得看,我直接给了项目源代码,这是一个简单的案例,以下是我用了自己项目做得教程,所以路劲不一样,直接下载请注意,修改路劲,还不会的qq:1023732997

demo下载链接下载运行,访问localhost:9090即可

springboot整合ueditor百度富文本编辑器详细教程_第1张图片
解压,放到项目目录static下
springboot整合ueditor百度富文本编辑器详细教程_第2张图片
第二步:引入到前端页面中




    
    Title
    
    
    
    






效果,图片展示用了自己项目的图片
springboot整合ueditor百度富文本编辑器详细教程_第3张图片
第三步:修改源代码,因为官方提供的是JSP,所以引入之后图片上传等一些功能无法使用:注意了以下每一步都是重点
1.修改ueditor.config.js,防止大家懒得自己写,给大家贴一下代码
var server_url = window.location.protocol+"//"+window.location.hostname+":"+window.location.port
serverUrl: server_url+"/config"
springboot整合ueditor百度富文本编辑器详细教程_第4张图片
修改后
springboot整合ueditor百度富文本编辑器详细教程_第5张图片
2.新增一个ServerController(一定要单独建一个,不要在其他Controller里写)
springboot整合ueditor百度富文本编辑器详细教程_第6张图片
代码:

@Controller
public class ServerController {
    @RequestMapping(value = "/config")
    public void config(HttpServletRequest request, HttpServletResponse response) {
        response.setContentType("application/json");
        String rootPath = ClassUtils.getDefaultClassLoader().getResource("").getPath() + "static/ueditor/jsp";
        try {
            response.setCharacterEncoding("UTF-8");
            String exec = new ActionEnter(request, rootPath).exec();
            System.out.println(exec);
            PrintWriter writer = response.getWriter();
            writer.write(new ActionEnter(request, rootPath).exec());
            writer.flush();
            writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }`
注意:
![在这里插入图片描述](https://img-blog.csdnimg.cn/20190705113706361.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQwNjE4NjY0,size_16,color_FFFFFF,t_70)
ActionEnter类是ueditor里一个jar包的,添加以下依赖
 
            com.gitee.qdbp.thirdparty
            ueditor
            1.4.3.3
        

springboot整合ueditor百度富文本编辑器详细教程_第7张图片
如果还有问题请添加以上截图里多出的两个依赖
至此就会发现,控制台不在报后端配置错误,单图上传可以点击了,文件上传,多图上传也可以选择文件了
springboot整合ueditor百度富文本编辑器详细教程_第8张图片
但是还是会点击之后无法在编辑器正常显示图片
最后一步:修改config.json
springboot整合ueditor百度富文本编辑器详细教程_第9张图片
填写所有图片访问路径前缀为“/ueditor/jsp”,大概有七八个地方,否则多图上传,文件上传那些也是不可以使用
最后效果
springboot整合ueditor百度富文本编辑器详细教程_第10张图片
springboot整合ueditor百度富文本编辑器详细教程_第11张图片
springboot整合ueditor百度富文本编辑器详细教程_第12张图片
如果对你有帮助请打开淘宝搜索店铺,未来能量 双击关注

你可能感兴趣的:(后端Java,前端)