|
|
@@ -436,6 +436,13 @@ public class NotaryDomainImpl implements NotaryDomain {
|
|
|
}
|
|
|
|
|
|
public FileInfoEntity uploadFaceFile(String base64){
|
|
|
+ Thread t = new Thread(new Runnable() {
|
|
|
+ @Override
|
|
|
+ public void run() {
|
|
|
+ uploadFile(base64);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ t.start();
|
|
|
String s = FileUploadUtil.saveFaceImage(base64);
|
|
|
String[] split = s.split("/");
|
|
|
FileInfoEntity fileInfo = new FileInfoEntity();
|