MQ连接配置问题修改

master
Leon 3 years ago
parent 1a3f693cd4
commit 4809f0c219

@ -8,7 +8,7 @@ spring:
driver-class-name: com.sap.db.jdbc.Driver
jndi-name: jdbc/jts/wipPool
activemq:
enabled: true
enabled: false
brokerUrl: tcp://113.98.201.217:61616?wireFormat.maxInactivityDuration=0
password: admin
user: admin

@ -8,7 +8,7 @@ spring:
driver-class-name: com.sap.db.jdbc.Driver
jndi-name: jdbc/jts/wipPool
activemq:
enabled: true
enabled: false
brokerUrl: tcp://172.16.251.133:61616?wireFormat.maxInactivityDuration=0
password: admin
user: admin

@ -219,7 +219,7 @@ public class SfcDispatchController {
try {
String site = CommonMethods.getSite();
paramMap.put("site", site);
paramMap.put("", DispatchStatusEnum.RELEASE.getCode());
paramMap.put("status", "('RELEASE','START','COMPLETE')");
result = sfcDispatchService.ganttList(site, paramMap);

@ -708,6 +708,9 @@
<if test="dispatchStatus != null and dispatchStatus != ''">
AND SD.DISPATCH_STATUS = #{dispatchStatus}
</if>
<if test="status != null and status != ''">
AND SD.DISPATCH_STATUS IN ${status}
</if>
<if test="item != null and item != ''">
AND IM.ITEM = #{item}
</if>

Loading…
Cancel
Save