Skip to content
This repository has been archived by the owner on Jul 29, 2018. It is now read-only.

Commit

Permalink
完成1.2.2版本的封版
Browse files Browse the repository at this point in the history
1、解决底层通信组件粘包问题
2、优化线程模型,现已支持多线程并发识别验证码
3、优化识别速度,已做到0秒响应验证码(0s ~ 3s)
4、支持多类型路由,并且兼容老版本api
5、增加汉字识别模型,目前只针对4种固定类型进行识别
6、官网静态页样式微调

java -jar -Dfile.encoding=utf-8 worker-1.2.2.jar

由于引入了汉字模型,请您在部署worker时以utf-8字符集运行
  • Loading branch information
wade-zh committed May 26, 2018
1 parent 472b1b5 commit 3552649
Show file tree
Hide file tree
Showing 80 changed files with 680 additions and 431 deletions.
Binary file added mbus-client/e/10.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mbus-client/e/11.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mbus-client/e/8.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mbus-client/e/9.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mbus-client/e/SendMessageDesk.bak
Binary file not shown.
Binary file modified mbus-client/e/SendMessageDesk.e
Binary file not shown.
109 changes: 81 additions & 28 deletions mbus-model/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

@@ -1,12 +1,23 @@
package org.wade.mbus.model.enums;

public enum ValidateCodeType {
/**
/*
* 缺省类型,一般用于系统测试
*/
T_DEFAULT,

/**
* 英数类型,支持多线程调用, 速度快, 识别率一般
*/
T_EN_XG,

/**
* 英数类型,不支持多线程, 速度慢, 识别率高
*/
T_EN_HY,

/**
* 英数类型,支持1-10位
* 汉字类型,支持多线程调用, 速度快, 识别率一般
*/
T_EN
T_ZH_XG,
}
Binary file not shown.
2 changes: 1 addition & 1 deletion mbus-model/target/maven-archiver/pom.properties
@@ -1,5 +1,5 @@
#Generated by Maven
#Mon May 21 22:52:24 CST 2018
#Sat May 26 09:19:08 CST 2018
version=1.0-SNAPSHOT
groupId=org.wade.mbus
artifactId=mbus-model
Binary file modified mbus-model/target/mbus-model-1.0-SNAPSHOT.jar
Binary file not shown.

0 comments on commit 3552649

Please sign in to comment.