parent
3317156b82
commit
7c777cbadf
|
@ -33,7 +33,7 @@ mybatis.mapper-locations=classpath*:mappers/*.xml
|
|||
mybatis.type-aliases-package=com.dispose.pojo.entity
|
||||
mybatis.configuration.default-enum-type-handler=com.dispose.common.CommonEnumHandler
|
||||
#config log
|
||||
logging.config=file:config/logback_debug.xml
|
||||
logging.config=file:config/logback.xml
|
||||
#config tomcat
|
||||
server.tomcat.max-threads=128
|
||||
#Json sort
|
||||
|
|
3
pom.xml
3
pom.xml
|
@ -292,6 +292,9 @@
|
|||
<configuration>
|
||||
<testFailureIgnore>true</testFailureIgnore>
|
||||
<skip>false</skip>
|
||||
<includes>
|
||||
<include>**/com/dispose/test/**/*.java</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
|
|
@ -2,6 +2,7 @@ package com.dispose.test.common;
|
|||
|
||||
import com.dispose.common.AuthConfigValue;
|
||||
import com.dispose.common.DisposeConfigValue;
|
||||
import com.dispose.common.DpTechConfigValue;
|
||||
import com.dispose.common.ErrorCode;
|
||||
import com.dispose.mapper.UserAccountMapper;
|
||||
import com.dispose.pojo.entity.UserAccount;
|
||||
|
@ -83,6 +84,9 @@ public class CommonEnvironment {
|
|||
if (ret.getFirstParam() == ErrorCode.ERR_OK) {
|
||||
this.loginToken = ret.getSecondParam();
|
||||
}
|
||||
|
||||
DpTechConfigValue.SOAP_CONNECT_TIMEOUT_SECOND = 1;
|
||||
DpTechConfigValue.SOAP_RECEIVE_TIMEOUT_SECOND = 1;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue