I've been tested for a while. embedded in the JSP page based on CKEditor edit page, the first to ckeditor the official online download ckeditor, you can download here http://download.csdn.net/detail/ kezhongke/4867921 mine is ckeditor3.x, now the latest should be ckeditor4. After you download it, unzip it and get CKEditor, and then copy it to the Webroot directory of the Web project,
Then run the server, enter the URL: http://localhost:8080/Ckeditor/ckeditor/_samples/index.html. If the information appears to indicate that the installation was successful.
Then in the JSP page you need to add the following sections:
1, the introduction of the label:
<%@ taglib uri= "http://ckeditor.com" prefix= "CKEditor"%>
2, add the following content, remember CKEditor must be placed at the end of the body tag, that is, the last tag in the body
<body>
<center> <textarea cols= "id=" "Editor1" Name= "Editor1"
rows= "ten" ></textarea >
</center> <ckeditor:replace replace= "Editor1" basepath= "/ckeditor/ckeditor/" /> </body>
Then enter the appropriate address, in the browser to see the effect bar!
This is only the most basic step, a lot of effort.