I'm trying to integrate ckeditor with a spring mvc project and it does not seem to be working. As far as I can tell I'm following the documentation but something is wrong. The only output I get is a textarea with no toolbar or anything resembling ckeditor. This stays the same if I specify the "Full' toolbar. It appears as if ckeditor is not being found, but why?
Note: in my servlet-context.xml I have tried both
<resources mapping="/resources/**" location="/resources/" />
and
<resources location="/, classpath:/META-INF/web-resources/" mapping="/resources/**"/>
and still not found.
1) I have ckeditor 3.6.6 in Eclipse under the webapp directory. I copied all the files from the download.
2) My jsp has the following:
<head>
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/ckeditor/adapters/jquery.js"></script>
<title>Home</title>
</head>
note: I've also tried referring to the src as src="/resources/ckeditor/..." but still no go.
<textarea id="editor1" name="editor1"><p>Initial value.</p></textarea>
<br>
<script type="text/javascript">
CKEDITOR.replace( 'editor1',
{
toolbar : 'Basic',
uiColor : '#9AB8F3'
});
</script>