• Struts
  • JSP
  • 今天配置了FCKeditor,具体如下:

    1.先在官网下载fckeditor的包,解压到项目中

    2.在web.xml里加上

    
    	Connector
    	
    		net.fckeditor.connector.ConnectorServlet
    	
    	
    		1
    	
    
    
    	Connector
    	
                    /fckeditor/editor/filemanager/connectors/×
            
    

     3.struts 2的配置要写成这样:

    
    	struts2
    	*.action
    

     不能写成

    
    	struts2
    	/*
    

     这样struts会拦截fckeditor的请求,fckeditor上传图片的时候就处理不了了。

    4.jsp页面:

    
    
     

    PS:不过新版的FCKeditor貌似只有上传图片,没有删除图片的功能,需要另外修改

    写得比较简洁,做个备忘~

     

    你可能感兴趣的:(fckeditor

    ,Servlet,Struts,JSP)