在eclipse中新建maven项目ckeditor-demo,添加maven依赖pom.xml
4.0.0 com.guiyi ckeditor war 0.0.1-SNAPSHOT ckeditor Maven Webapp http://maven.apache.org junit junit 3.8.1 test commons-io commons-io 2.4 commons-fileupload commons-fileupload 1.3.1 javax.servlet jstl 1.2 javax.servlet.jsp jsp-api 2.2.1-b03 provided javax.servlet javax.servlet-api 3.1.0 provided com.ckeditor ckeditor-java-core 3.5.3 ckeditor
在webapp中复制ckeditor和ckfinder
在webapp中添加index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>Insert title here ${ctx}
显示结果的jsp页面display.jsp如下
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><% String topic = request.getParameter("topic"); String content = request.getParameter("content"); out.println(topic); out.println(content); %>