浏览代码

获取样板机时增加场站编号配置

xiuwei 3 年之前
父节点
当前提交
8a62da43ee

+ 2 - 1
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/InverterInfoService.java

@@ -157,8 +157,9 @@ public class InverterInfoService extends BaseService {
    * @return 逆变器信息
    */
   @Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)
-  public List<InverterInfo> getAllSample() {
+  public List<InverterInfo> getAllSample(String stationCode) {
     InverterInfo inverterInfo = new InverterInfo();
+    inverterInfo.setStationCode(stationCode);
     inverterInfo.setSample(true);
     return inverterInfoRepository.findAll(Example.of(inverterInfo));
   }

+ 2 - 1
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/WindTurbineInfoService.java

@@ -151,8 +151,9 @@ public class WindTurbineInfoService extends BaseService {
    * @return 风机信息
    */
   @Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)
-  public List<WindTurbineInfo> getAllSample() {
+  public List<WindTurbineInfo> getAllSample(String stationCode) {
     WindTurbineInfo windTurbineInfo = new WindTurbineInfo();
+    windTurbineInfo.setStationCode(stationCode);
     windTurbineInfo.setSample(true);
     return windTurbineInfoRepository.findAll(Example.of(windTurbineInfo));
   }

+ 2 - 2
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/powerofreference/iml/PowerOfReferenceCalculator1.java

@@ -81,12 +81,12 @@ public class PowerOfReferenceCalculator1 extends BasePowerOfReferenceCalculator
     this.electricFieldType = electricField.getElectricFieldTypeEnum();
     this.stationTotalCapacity = electricField.getCapacity();
     if (ElectricFieldTypeEnum.E1.equals(this.electricFieldType)) {
-      List<InverterInfo> inverterInfos = inverterInfoService.getAllSample();
+      List<InverterInfo> inverterInfos = inverterInfoService.getAllSample(electricField.getStationCode());
       for (InverterInfo i : inverterInfos) {
         this.samples.add(new SampleEquipment(i.getId(), i.getCapacity()));
       }
     } else if (ElectricFieldTypeEnum.E2.equals(this.electricFieldType)) {
-      List<WindTurbineInfo> windTurbineInfos = windTurbineInfoService.getAllSample();
+      List<WindTurbineInfo> windTurbineInfos = windTurbineInfoService.getAllSample(electricField.getStationCode());
       for (WindTurbineInfo i : windTurbineInfos) {
         this.samples.add(new SampleEquipment(i.getId(), BigDecimal.valueOf(i.getMaxPower())));
       }

+ 2 - 2
ipfcst-console/src/main/java/com/jiayue/ipfcst/console/service/powerofreference/iml/PowerOfReferenceCalculator2.java

@@ -48,12 +48,12 @@ public class PowerOfReferenceCalculator2 extends BasePowerOfReferenceCalculator
   public BasePowerOfReferenceCalculator init() {
     this.electricFieldType = electricField.getElectricFieldTypeEnum();
     if (ElectricFieldTypeEnum.E1.equals(this.electricFieldType)) {
-      List<InverterInfo> inverterInfos = inverterInfoService.getAllSample();
+      List<InverterInfo> inverterInfos = inverterInfoService.getAllSample(electricField.getStationCode());
       for (InverterInfo i : inverterInfos) {
         this.samples.add(i.getId());
       }
     } else if (ElectricFieldTypeEnum.E2.equals(this.electricFieldType)) {
-      List<WindTurbineInfo> windTurbineInfos = windTurbineInfoService.getAllSample();
+      List<WindTurbineInfo> windTurbineInfos = windTurbineInfoService.getAllSample(electricField.getStationCode());
       for (WindTurbineInfo i : windTurbineInfos) {
         this.samples.add(i.getId());
       }

+ 1 - 1
ipfcst-console/src/test/java/com/jiayue/ipfcst/console/service/PowerStationDataTest.java

@@ -28,7 +28,7 @@ public class PowerStationDataTest extends BaseTest {
   @Test
   public void packages() throws Exception {
     for (; ; ) {
-      PowerStationStatusData a = powerStationDataPackerContainer.getDataPacker("Q00001").packageData(BigDecimal.valueOf(0.2));
+      PowerStationStatusData a = powerStationDataPackerContainer.getDataPacker("Q00002").packageData(BigDecimal.valueOf(0.4));
       System.out.println(JSON.toJSONString(a));
       Thread.sleep(20000L);
     }

+ 217 - 0
ipfcst-console/velocity.log

@@ -404,3 +404,220 @@
 2021-10-26 09:14:15,098 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
 2021-10-26 09:14:15,214 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
 2021-10-26 09:14:15,222 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:52:37,343 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 10:52:37,344 - Initializing Velocity, Calling init()...
+2021-10-26 10:52:37,344 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 10:52:37,344 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 10:52:37,344 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 10:52:37,344 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 10:52:37,344 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 10:52:37,344 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 10:52:37,355 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:52:37,359 - Do unicode file recognition:  false
+2021-10-26 10:52:37,359 - FileResourceLoader : adding path ''
+2021-10-26 10:52:37,384 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 10:52:37,388 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 10:52:37,390 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 10:52:37,391 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 10:52:37,393 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 10:52:37,395 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 10:52:37,398 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 10:52:37,401 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 10:52:37,402 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 10:52:37,404 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 10:52:37,454 - Created '20' parsers.
+2021-10-26 10:52:37,465 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 10:52:37,465 - Velocimacro : Default library not found.
+2021-10-26 10:52:37,466 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 10:52:37,466 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 10:52:37,466 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 10:52:37,466 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 10:53:10,181 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:53:10,800 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:53:15,069 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:53:15,156 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:53:15,291 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:53:15,371 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:54:29,723 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:54:38,598 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:54:48,451 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:54:55,422 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:55:00,426 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:55:04,619 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:55:04,619 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:38,251 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:38,258 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:38,378 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:38,559 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:39,218 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 10:59:39,232 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:01:41,032 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 11:01:41,033 - Initializing Velocity, Calling init()...
+2021-10-26 11:01:41,033 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 11:01:41,033 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 11:01:41,033 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 11:01:41,033 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 11:01:41,033 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:01:41,033 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:01:41,040 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:01:41,042 - Do unicode file recognition:  false
+2021-10-26 11:01:41,042 - FileResourceLoader : adding path ''
+2021-10-26 11:01:41,063 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 11:01:41,066 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 11:01:41,067 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 11:01:41,068 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 11:01:41,069 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 11:01:41,070 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 11:01:41,072 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 11:01:41,074 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 11:01:41,076 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 11:01:41,077 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 11:01:41,114 - Created '20' parsers.
+2021-10-26 11:01:41,126 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 11:01:41,126 - Velocimacro : Default library not found.
+2021-10-26 11:01:41,126 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 11:01:41,126 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 11:01:41,126 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 11:01:41,127 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 11:02:23,886 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,104 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,209 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,295 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,330 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,474 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:24,532 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:25,245 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:50,202 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 11:02:50,203 - Initializing Velocity, Calling init()...
+2021-10-26 11:02:50,203 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 11:02:50,203 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 11:02:50,203 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 11:02:50,203 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 11:02:50,203 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:02:50,203 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:02:50,210 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:02:50,212 - Do unicode file recognition:  false
+2021-10-26 11:02:50,212 - FileResourceLoader : adding path ''
+2021-10-26 11:02:50,229 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 11:02:50,233 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 11:02:50,234 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 11:02:50,235 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 11:02:50,237 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 11:02:50,238 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 11:02:50,240 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 11:02:50,242 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 11:02:50,244 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 11:02:50,245 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 11:02:50,291 - Created '20' parsers.
+2021-10-26 11:02:50,305 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 11:02:50,306 - Velocimacro : Default library not found.
+2021-10-26 11:02:50,306 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 11:02:50,306 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 11:02:50,306 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 11:02:50,306 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 11:04:53,619 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:04:53,858 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:05:24,511 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 11:05:24,511 - Initializing Velocity, Calling init()...
+2021-10-26 11:05:24,511 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 11:05:24,511 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 11:05:24,511 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 11:05:24,511 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 11:05:24,511 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:05:24,511 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:05:24,520 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:05:24,522 - Do unicode file recognition:  false
+2021-10-26 11:05:24,522 - FileResourceLoader : adding path ''
+2021-10-26 11:05:24,540 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 11:05:24,544 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 11:05:24,546 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 11:05:24,547 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 11:05:24,548 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 11:05:24,550 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 11:05:24,552 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 11:05:24,555 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 11:05:24,558 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 11:05:24,560 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 11:05:24,600 - Created '20' parsers.
+2021-10-26 11:05:24,616 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 11:05:24,616 - Velocimacro : Default library not found.
+2021-10-26 11:05:24,616 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 11:05:24,616 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 11:05:24,616 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 11:05:24,616 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 11:08:39,199 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 11:08:39,199 - Initializing Velocity, Calling init()...
+2021-10-26 11:08:39,199 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 11:08:39,199 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 11:08:39,199 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 11:08:39,199 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 11:08:39,199 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:08:39,199 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:08:39,206 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:08:39,208 - Do unicode file recognition:  false
+2021-10-26 11:08:39,208 - FileResourceLoader : adding path ''
+2021-10-26 11:08:39,229 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 11:08:39,233 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 11:08:39,235 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 11:08:39,236 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 11:08:39,237 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 11:08:39,238 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 11:08:39,239 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 11:08:39,241 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 11:08:39,243 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 11:08:39,245 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 11:08:39,278 - Created '20' parsers.
+2021-10-26 11:08:39,291 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 11:08:39,291 - Velocimacro : Default library not found.
+2021-10-26 11:08:39,291 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 11:08:39,291 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 11:08:39,291 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 11:08:39,291 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 11:09:13,493 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:13,515 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:15,090 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:15,153 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:15,164 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:15,306 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:20,218 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:22,088 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:30,081 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:30,157 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:57,970 - Log4JLogChute initialized using file 'velocity.log'
+2021-10-26 11:09:57,970 - Initializing Velocity, Calling init()...
+2021-10-26 11:09:57,970 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
+2021-10-26 11:09:57,970 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
+2021-10-26 11:09:57,970 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute
+2021-10-26 11:09:57,970 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/format/Formatter).  Falling back to next log system...
+2021-10-26 11:09:57,970 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:09:57,970 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute
+2021-10-26 11:09:57,980 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:09:57,982 - Do unicode file recognition:  false
+2021-10-26 11:09:57,982 - FileResourceLoader : adding path ''
+2021-10-26 11:09:58,001 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map.
+2021-10-26 11:09:58,005 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop
+2021-10-26 11:09:58,007 - Loaded System Directive: org.apache.velocity.runtime.directive.Define
+2021-10-26 11:09:58,008 - Loaded System Directive: org.apache.velocity.runtime.directive.Break
+2021-10-26 11:09:58,009 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
+2021-10-26 11:09:58,010 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal
+2021-10-26 11:09:58,012 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro
+2021-10-26 11:09:58,014 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse
+2021-10-26 11:09:58,016 - Loaded System Directive: org.apache.velocity.runtime.directive.Include
+2021-10-26 11:09:58,017 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
+2021-10-26 11:09:58,055 - Created '20' parsers.
+2021-10-26 11:09:58,068 - Velocimacro : "velocimacro.library" is not set.  Trying default library: VM_global_library.vm
+2021-10-26 11:09:58,069 - Velocimacro : Default library not found.
+2021-10-26 11:09:58,069 - Velocimacro : allowInline = true : VMs can be defined inline in templates
+2021-10-26 11:09:58,069 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
+2021-10-26 11:09:58,069 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.
+2021-10-26 11:09:58,069 - Velocimacro : autoload off : VM system will not automatically reload global library macros
+2021-10-26 11:10:10,268 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:10,289 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:15,293 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:15,595 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:15,604 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/CDQ_USE_F.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:15,813 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/THEROY.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:20,089 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:22,383 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/NBQ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:30,308 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
+2021-10-26 11:10:30,433 - ResourceManager : found D:\codebase\focus\ipfcst-console\target\test-classes/vms/E63/QXZ.vm with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader