主頁(yè) > 知識(shí)庫(kù) > 關(guān)于jsp版ueditor1.2.5的部分問(wèn)題解決(上傳圖片失敗)

關(guān)于jsp版ueditor1.2.5的部分問(wèn)題解決(上傳圖片失敗)

熱門標(biāo)簽:企業(yè)電話機(jī)器人辦理 長(zhǎng)春防封卡電銷卡套餐 株洲外呼營(yíng)銷系統(tǒng)有哪些 興化400電話辦理多少錢 四平電話機(jī)器人哪家好 智能電銷機(jī)器人真的好嗎 天津電銷卡外呼系統(tǒng)線路 長(zhǎng)春銷售外呼系統(tǒng)業(yè)務(wù) 靈聲智能電話機(jī)器人招聘

1. 關(guān)于上傳圖片失敗的問(wèn)題

首先導(dǎo)入jar包
commons-fileupload-1.2.2.jar,ueditor.jar

然后修改editor_config.js

找到并修改 URL 修改為  window.UEDITOR_HOME_URL||"/mypro/ueditor/"  其中mypro是我的項(xiàng)目名稱

imagePath 修改為 URL + "upload/"
假設(shè)我們的圖片存儲(chǔ)路徑是ueditor/upload/

然后修改 imageUp.jsp
up.setSavePath("") 修改為 up.setSavePath("../imageUp");
這樣就設(shè)置圖片的存儲(chǔ)路徑為ueditor/upload/imageUp

然后如果沒(méi)有在web.xml中配置struts2的攔截器的話,應(yīng)該可以上傳成功了,然后如果需要結(jié)合struts2攔截器,則需要另外添加配置

原理是這樣的,就是自己創(chuàng)建一個(gè)攔截器,替換默認(rèn)的攔截器,然后將所不需要攔截的路徑過(guò)濾,其余的還是用默認(rèn)攔截器

首先創(chuàng)建一個(gè)攔截器類

復(fù)制代碼 代碼如下:

public class MyStrutsFilter extends StrutsPrepareAndExecuteFilter {
 public void doFilter(ServletRequest req, ServletResponse res,
   FilterChain chain) {
  HttpServletRequest request = (HttpServletRequest) req;
  String url = request.getRequestURI();
  if (url.contains("ueditor/jsp/")) {SPAN style="WHITE-SPACE: pre">  /SPAN>//這里是將整個(gè)文件夾下的文件都過(guò)濾了
   try {
    chain.doFilter(req, res);
   } catch (IOException e) {
    e.printStackTrace();
   } catch (ServletException e) {
    e.printStackTrace();
   }
  } else {
   try {
    super.doFilter(req, res, chain);// 采用默認(rèn)父類的攔截器,即 struts2
   } catch (IOException e) {
    e.printStackTrace();
   } catch (ServletException e) {
    e.printStackTrace();
   }
  }
 }
}

然后在web.xml中定義

復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="UTF-8"?>
web-app version="3.0"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
 http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
  display-name>/display-name> 
  welcome-file-list>
    welcome-file>index.jsp/welcome-file>
  /welcome-file-list>
    session-config>   
        session-timeout>30/session-timeout>   
    /session-config> 
  filter>
  filter-name>struts2/filter-name>
  filter-class> 
        cn.xyx.web.filter.MyStrutsFilter
        !-- 這里使用自定義攔截器,.jsp不做處理,其他使用默認(rèn)攔截器 -
         注意這里替換了默認(rèn)的struts2的 攔截器 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter -->
    /filter-class>
  /filter>
  filter-mapping>
  filter-name>struts2/filter-name>
  url-pattern>/*/url-pattern>
  /filter-mapping>
  error-page>
   error-code>404/error-code>
   location>/404.jsp/location>
 /error-page>
  /web-app>

這樣配置就可以了

您可能感興趣的文章:
  • UEditor編輯器自定義上傳圖片或文件路徑的修改方法
  • ueditor編輯器不能上傳圖片問(wèn)題的解決方法
  • 百度ueditor組件上傳圖片后如何設(shè)置img里的alt屬性
  • UEditor 編輯器跨域上傳解決方法
  • 關(guān)于UEditor編輯器遠(yuǎn)程圖片上傳失敗的解決辦法
  • PHP結(jié)合Ueditor并修改圖片上傳路徑

標(biāo)簽:巴彥淖爾 漯河 青海 黑龍江 新疆 運(yùn)城 石嘴山 貴港

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《關(guān)于jsp版ueditor1.2.5的部分問(wèn)題解決(上傳圖片失敗)》,本文關(guān)鍵詞  關(guān)于,jsp,版,ueditor1.2.5,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《關(guān)于jsp版ueditor1.2.5的部分問(wèn)題解決(上傳圖片失敗)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于關(guān)于jsp版ueditor1.2.5的部分問(wèn)題解決(上傳圖片失敗)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章