Browse Source

REPORT-129976 周开始于配置不生效

fbp/master
Destiny.Lin 1 month ago
parent
commit
471c6a6c97
  1. 5
      designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java

5
designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java vendored

@ -5,6 +5,7 @@ import com.fanruan.carina.annotions.DependsOn;
import com.fanruan.carina.annotions.FineComponent;
import com.fanruan.carina.annotions.Start;
import com.fanruan.carina.annotions.Stop;
import com.fr.report.VcsContext;
/**
* DesignReportBaseComponent
@ -22,7 +23,7 @@ public class DesignReportBaseComponent extends ReportBaseComponent {
*/
@Start
public void start() {
super.start();
VcsContext.init();
}
/**
@ -30,6 +31,6 @@ public class DesignReportBaseComponent extends ReportBaseComponent {
*/
@Stop
public void stop() {
super.stop();
VcsContext.reset();
}
}

Loading…
Cancel
Save