修改结构
This commit is contained in:
parent
f33447e4f2
commit
0e471d20a3
|
@ -32,6 +32,8 @@ import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntit
|
||||||
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
||||||
import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
|
import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
|
||||||
import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
|
import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
|
||||||
|
import com.hzya.frame.testCbs.service.ITsetCbsService;
|
||||||
|
import com.hzya.frame.testU8c.service.ITsetU8cService;
|
||||||
import com.hzya.frame.uuid.UUIDUtils;
|
import com.hzya.frame.uuid.UUIDUtils;
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
|
@ -117,9 +119,17 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
|
||||||
public String getPluginType() {
|
public String getPluginType() {
|
||||||
return "1";
|
return "1";
|
||||||
}
|
}
|
||||||
|
@Resource
|
||||||
|
private ITsetCbsService tsetCbsService;
|
||||||
|
@Resource
|
||||||
|
private ITsetU8cService tsetU8cService;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity executeBusiness(JSONObject requestJson) {
|
public JsonResultEntity executeBusiness(JSONObject requestJson) {
|
||||||
|
|
||||||
|
tsetCbsService.testCbs(new JSONObject());
|
||||||
|
tsetU8cService.testU8c(new JSONObject());
|
||||||
|
requestJson = null;
|
||||||
try{
|
try{
|
||||||
//重试方法
|
//重试方法
|
||||||
if (null != requestJson) {
|
if (null != requestJson) {
|
||||||
|
@ -1484,4 +1494,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
|
||||||
}
|
}
|
||||||
return jsonObjects;
|
return jsonObjects;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,4 +125,4 @@ jeecg :
|
||||||
minio_pass: ??
|
minio_pass: ??
|
||||||
bucketName: ??
|
bucketName: ??
|
||||||
data:
|
data:
|
||||||
use: false
|
use: true
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -4,6 +4,8 @@
|
||||||
<modules>
|
<modules>
|
||||||
<module>buildpackage</module>
|
<module>buildpackage</module>
|
||||||
<module>service</module>
|
<module>service</module>
|
||||||
|
<module>cbs</module>
|
||||||
|
<module>u8c</module>
|
||||||
<module>common</module>
|
<module>common</module>
|
||||||
<module>webapp</module>
|
<module>webapp</module>
|
||||||
<module>core</module>
|
<module>core</module>
|
||||||
|
@ -450,7 +452,7 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<webResources>
|
<webResources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>${basedir}/../service/src/main/resources/lib</directory>
|
<directory>${basedir}/../service/src/main/webapp/WEB-INF/lib</directory>
|
||||||
<targetPath>WEB-INF/lib/</targetPath>
|
<targetPath>WEB-INF/lib/</targetPath>
|
||||||
<filtering>false</filtering>
|
<filtering>false</filtering>
|
||||||
<includes>
|
<includes>
|
||||||
|
|
|
@ -22,14 +22,6 @@
|
||||||
<version>${mysql-connector-java}</version>
|
<version>${mysql-connector-java}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- service下的lib 写法-->
|
|
||||||
<!-- <dependency>-->
|
|
||||||
<!-- <groupId>com.hzya.openBasicSDK</groupId>-->
|
|
||||||
<!-- <artifactId>openBasicSDK</artifactId>-->
|
|
||||||
<!-- <version>1</version>-->
|
|
||||||
<!-- <scope>system</scope>-->
|
|
||||||
<!-- <systemPath>${basedir}/src/main/resources/lib/openBasicSDK-2.1.230630.jar</systemPath>-->
|
|
||||||
<!-- </dependency>-->
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
|
@ -985,20 +985,20 @@ where id = #{id}
|
||||||
<when test="item.connectionSymbol == '1'.toString() ">
|
<when test="item.connectionSymbol == '1'.toString() ">
|
||||||
<choose>
|
<choose>
|
||||||
<when test="item.rightParenthesis == ')'.toString() ">
|
<when test="item.rightParenthesis == ')'.toString() ">
|
||||||
${item.rightParenthesis} and
|
${item.rightParenthesis}
|
||||||
</when>
|
</when>
|
||||||
<otherwise>
|
<otherwise>
|
||||||
${item.rightParenthesis}
|
${item.rightParenthesis} and
|
||||||
</otherwise>
|
</otherwise>
|
||||||
</choose>
|
</choose>
|
||||||
</when>
|
</when>
|
||||||
<when test="item.connectionSymbol == '2'.toString() ">
|
<when test="item.connectionSymbol == '2'.toString() ">
|
||||||
<choose>
|
<choose>
|
||||||
<when test="item.rightParenthesis == ')'.toString() ">
|
<when test="item.rightParenthesis == ')'.toString() ">
|
||||||
${item.rightParenthesis} or
|
${item.rightParenthesis}
|
||||||
</when>
|
</when>
|
||||||
<otherwise>
|
<otherwise>
|
||||||
${item.rightParenthesis}
|
${item.rightParenthesis} or
|
||||||
</otherwise>
|
</otherwise>
|
||||||
</choose>
|
</choose>
|
||||||
</when>
|
</when>
|
||||||
|
|
|
@ -16,6 +16,16 @@
|
||||||
<artifactId>service</artifactId>
|
<artifactId>service</artifactId>
|
||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.hzya.frame</groupId>
|
||||||
|
<artifactId>cbs</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.hzya.frame</groupId>
|
||||||
|
<artifactId>u8c</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
Loading…
Reference in New Issue