935090232@qq.com
2022-02-21 d2213e56167dcd77c967e996df7c73e104f019d1
zq-erp/src/main/java/com/matrix/component/ueditor/ActionEnter.java
@@ -7,6 +7,7 @@
import com.matrix.component.ueditor.hunter.ImageHunter;
import com.matrix.component.ueditor.upload.Uploader;
import com.matrix.component.ueditor.define.State;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
@@ -21,14 +22,16 @@
   private String actionType = null;
   
   private ConfigManager configManager = null;
   private UeditorProperties ueditorProperties = null;
   public ActionEnter ( HttpServletRequest request, String rootPath ) {
   public ActionEnter (HttpServletRequest request, String rootPath , UeditorProperties ueditorProperties) {
      
      this.request = request;
      this.rootPath = rootPath;
      this.actionType = request.getParameter( "action" );
      this.contextPath = request.getContextPath();
      this.configManager = ConfigManager.getInstance( this.rootPath, this.contextPath, request.getRequestURI() );
      this.ueditorProperties=ueditorProperties;
      this.configManager = ConfigManager.getInstance( this.rootPath, this.contextPath,  request.getRequestURI() ,ueditorProperties );
      
   }