CKEditor富文本編輯器+spring boot使用教程

因為在我的快速開發(fā)框架里需要增加內(nèi)容發(fā)布相關(guān)的功能热监,所以需要使用富文本編輯器捺弦。比較了目前熱門的一些富文本編輯器,最后選定了CKEditor4孝扛。CKEditor4的優(yōu)點是功能強(qiáng)大列吼、插件超多、文檔詳細(xì)苦始、更新及時寞钥。

引入CKEditor4

在官網(wǎng)下載CKEditor4,下載地址 https://ckeditor.com/ckeditor-4/download/陌选,我選擇的是Full Package版本理郑。

CKEditor4版本選擇

html頁面中引入CKEditor4

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="utf-8">
        <title>CKEditor Sample</title>
        <!-- 引入ckeditor.js文件 -->
        <script src="../ckeditor.js"></script>
    </head>
    <body>
        <form>
            <textarea name="editor1" id="editor1" rows="10" cols="80">
            </textarea>
            <script>
                // 替換 <textarea id="editor1">為CKEditor實例
                // 使用默認(rèn)配置
                CKEDITOR.replace( 'editor1' );
            </script>
        </form>
    </body>
</html>

在瀏覽器中打開,效果如下


CKEditor4默認(rèn)配置

獲取編輯器文本咨油,使用getData方法

CKEDITOR.instances.editor1.getData()

設(shè)置編輯器初始文本香浩,使用setData方法

CKEDITOR.instances.editor1.setData( '<p>This is the editor data.</p>' );

自定義CKEditor4工具欄

CKEditor的工具欄按鈕可以根據(jù)需求靈活的隱藏、顯示臼勉、分組邻吭、排序。
新建一個CKEditor的自定義配置文件editorConfig.js宴霸。
在下載的程序包里提供了自定義工具欄工具囱晴,目錄是ckeditor\samples\toolbarconfigurator,在瀏覽器里打開index.html瓢谢。


自定義工具欄工具

配置好后畸写,點擊Get toolbar config,把生成的配置內(nèi)容復(fù)制到editorConfig.js配置文件里氓扛。

CKEDITOR.editorConfig = function (config) {

    config.toolbarGroups = [
        {name: 'document', groups: ['mode', 'document', 'doctools']},
        {name: 'tools', groups: ['tools']},
        {name: 'clipboard', groups: ['clipboard', 'undo']},
        {name: 'editing', groups: ['find', 'selection', 'spellchecker', 'editing']},
        {name: 'forms', groups: ['forms']},
        {name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
        {name: 'colors', groups: ['colors']},
        {name: 'styles', groups: ['styles']},
        {name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi', 'paragraph']},
        {name: 'others', groups: ['others']},
        {name: 'about', groups: ['about']},
        {name: 'links', groups: ['links']},
        {name: 'insert', groups: ['insert']}
    ];

    config.removeButtons = 'About,Save,NewPage,Preview,Print,Templates,Find,Replace,SelectAll,Scayt,Form,Checkbox,Radio,TextField,Textarea,Select,Button,ImageButton,HiddenField,Language,BidiRtl,BidiLtr,Flash,Iframe,PageBreak,SpecialChar,Smiley,Cut,Copy,Paste,PasteText,PasteFromWord,CopyFormatting,RemoveFormat,Anchor,Styles,Format,Font,JustifyLeft,JustifyCenter,JustifyRight,JustifyBlock';
};

在html頁面里引入自定義配置文件枯芬。

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="utf-8">
        <title>CKEditor Sample</title>
        <!-- 引入ckeditor.js文件 -->
        <script src="../ckeditor.js"></script>
    </head>
    <body>
        <form>
            <textarea name="editor1" id="editor1" rows="10" cols="80">
            </textarea>
            <script>
                // 使用自定義配置
                var editorConfig = {
                    customConfig: './samples/editorConfig.js'
                };

                CKEDITOR.replace( 'editor1', editorConfig);
            </script>
        </form>
    </body>
</html>

在瀏覽器中打開,效果如下


自定義工具欄

自定義CKEditor4上傳圖片工具

CKEditor4默認(rèn)的上傳圖片功能界面不夠簡潔采郎,很繁重千所。

默認(rèn)上傳圖片界面

需要替換為使用Enhanced Image Plugin插件。在 https://ckeditor.com/cke4/addon/image2 下載插件蒜埋,解壓到CKEditor程序包的plugins目錄下淫痰。在editorConfig.js文件中增加如下配置:

config.extraPlugins = 'image2';

在瀏覽器中顯示效果如下,默認(rèn)只支持通過url發(fā)布圖片整份。


Enhanced Image Plugin插件

需要添加本地圖片上傳功能待错。在editorConfig.js文件中增加如下配置:

// 服務(wù)器端上傳圖片接口URL
config.filebrowserImageUploadUrl='/cms/content/uploadImage';

在瀏覽器中顯示效果如下


上傳本地文件

editorConfig.js文件完整配置

// CKEDITOR配置文件
CKEDITOR.editorConfig = function (config) {
    config.language = 'zh-cn';

    config.height = 400;

    config.extraPlugins = 'image2';

    config.filebrowserImageUploadUrl='/cms/content/uploadImage';

    config.toolbarGroups = [
        {name: 'document', groups: ['mode', 'document', 'doctools']},
        {name: 'tools', groups: ['tools']},
        {name: 'clipboard', groups: ['clipboard', 'undo']},
        {name: 'editing', groups: ['find', 'selection', 'spellchecker', 'editing']},
        {name: 'forms', groups: ['forms']},
        {name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
        {name: 'colors', groups: ['colors']},
        {name: 'styles', groups: ['styles']},
        {name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi', 'paragraph']},
        {name: 'others', groups: ['others']},
        {name: 'about', groups: ['about']},
        {name: 'links', groups: ['links']},
        {name: 'insert', groups: ['insert']}
    ];

    config.removeButtons = 'About,Save,NewPage,Preview,Print,Templates,Find,Replace,SelectAll,Scayt,Form,Checkbox,Radio,TextField,Textarea,Select,Button,ImageButton,HiddenField,Language,BidiRtl,BidiLtr,Flash,Iframe,PageBreak,SpecialChar,Smiley,Cut,Copy,Paste,PasteText,PasteFromWord,CopyFormatting,RemoveFormat,Anchor,Styles,Format,Font,JustifyLeft,JustifyCenter,JustifyRight,JustifyBlock';
};

服務(wù)器端代碼

上傳圖片接口需要返回如下約定的JSON字符串籽孙。

//上傳成功結(jié)果示例
{
    "uploaded": 1,
    "fileName": "foo.jpg",
    "url": "/files/foo.jpg"
}

//上傳失敗結(jié)果示例
{
    "uploaded": 0,
    "error": {
        "message": "The file is too big."
    }
}

上傳圖片接口響應(yīng)模型定義如下:

public class UploadImageResModel {
    /**
     * 1成功,0失敗
     */
    private Integer uploaded;

    private String fileName;

    private String url;

    public Integer getUploaded() {
        return uploaded;
    }

    public void setUploaded(Integer uploaded) {
        this.uploaded = uploaded;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }
}

假設(shè)上傳圖片的根目錄是E:/upload/火俄。需要把該目錄做靜態(tài)資源映射犯建,映射到/upload/**路由下。新增配置文件:

@Component
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/upload/**")
                .addResourceLocations("file:///E:/upload/");

        super.addResourceHandlers(registry);
    }
}

上傳圖片接口代碼如下

@Controller
@RequestMapping("/cms/content")
public class ContentController {

    private static final Logger logger = LoggerFactory.getLogger(ContentController.class);

    @PostMapping("/uploadImage")
    @ResponseBody
    public UploadImageResModel uploadImage(@RequestParam("upload") MultipartFile multipartFile) {
        UploadImageResModel res = new UploadImageResModel();
        res.setUploaded(0);

        if (multipartFile == null || multipartFile.isEmpty())
            return res;

        //生成新的文件名及存儲位置
        String fileName = multipartFile.getOriginalFilename();
        String newFileName = UUID.randomUUID().toString()
                .replaceAll("-", "")
                .concat(fileName.substring(fileName.lastIndexOf(".")));

        String fullPath = "E:/upload/".concat(newFileName);

        try {
            File target = new File(fullPath);
            if (!target.getParentFile().exists()) { //判斷文件父目錄是否存在
                target.getParentFile().mkdirs();
            }

            multipartFile.transferTo(target);

            String imgUrl = "/upload/".concat(newFileName);

            res.setUploaded(1);
            res.setFileName(fileName);
            res.setUrl(imgUrl);
            return res;
        } catch (IOException ex) {
            logger.error("上傳圖片異常", ex);
        }

        return res;
    }
}

最后瓜客,CKEditor除了支持瀏覽本地圖片的方式上傳圖片适瓦,還支持把圖片拖拽到編輯器方式以及從剪貼板粘貼方式上傳圖片。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末忆家,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子德迹,更是在濱河造成了極大的恐慌芽卿,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件胳搞,死亡現(xiàn)場離奇詭異卸例,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)肌毅,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門筷转,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人悬而,你說我怎么就攤上這事呜舒。” “怎么了笨奠?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵袭蝗,是天一觀的道長。 經(jīng)常有香客問我般婆,道長到腥,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任蔚袍,我火速辦了婚禮乡范,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘啤咽。我一直安慰自己晋辆,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布宇整。 她就那樣靜靜地躺著栈拖,像睡著了一般。 火紅的嫁衣襯著肌膚如雪没陡。 梳的紋絲不亂的頭發(fā)上涩哟,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天索赏,我揣著相機(jī)與錄音,去河邊找鬼贴彼。 笑死潜腻,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的器仗。 我是一名探鬼主播融涣,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼精钮!你這毒婦竟也來了威鹿?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤轨香,失蹤者是張志新(化名)和其女友劉穎忽你,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體臂容,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡科雳,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了脓杉。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片糟秘。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖球散,靈堂內(nèi)的尸體忽然破棺而出尿赚,到底是詐尸還是另有隱情,我是刑警寧澤蕉堰,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布吼畏,位于F島的核電站,受9級特大地震影響嘁灯,放射性物質(zhì)發(fā)生泄漏泻蚊。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一丑婿、第九天 我趴在偏房一處隱蔽的房頂上張望性雄。 院中可真熱鬧,春花似錦羹奉、人聲如沸秒旋。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽迁筛。三九已至,卻和暖如春耕挨,著一層夾襖步出監(jiān)牢的瞬間细卧,已是汗流浹背尉桩。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留贪庙,地道東北人蜘犁。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像止邮,于是被迫代替她去往敵國和親这橙。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,509評論 2 348