feat():测试
parent
7cd8959111
commit
10a211b6ef
|
@ -3,7 +3,6 @@ package com.muyu.engine.basic.abstracts;
|
|||
import com.muyu.common.domain.DataValue;
|
||||
import com.muyu.engine.basic.BasicEngine;
|
||||
import com.muyu.engine.basic.handler.DataEngineSetHandler;
|
||||
import com.muyu.engine.basic.handler.DataEngineValueHandler;
|
||||
|
||||
/**
|
||||
* @Author:蓬叁
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
package com.muyu.generate;
|
||||
|
||||
import com.muyu.common.domain.DataValue;
|
||||
import com.muyu.engine.basic.abstracts.DataEngineValueActuator;
|
||||
|
||||
/**
|
||||
* @Author: admin
|
||||
* @date: 2024/09/01 20:53:03
|
||||
* @Description: 邮箱测试31.0_AWEOIF
|
||||
* @Version: 1.0
|
||||
*/
|
||||
public class GenerateEmailAWEOIF extends DataEngineValueActuator {
|
||||
@Override
|
||||
public void run () {
|
||||
}
|
||||
}
|
|
@ -46,7 +46,7 @@ public class OSSFileLoad {
|
|||
return Result.error("预下载文件不存在");
|
||||
}
|
||||
// 本地文件下载路径
|
||||
String localPath = "home/"+fileName;
|
||||
String localPath = "home/app.jar"+fileName;
|
||||
// ObjectMetadata object = ossClient.getObject(new GetObjectRequest(bucketName, filePath + fileName), new File(localPath));
|
||||
// System.out.println(object);
|
||||
//
|
||||
|
@ -76,9 +76,9 @@ public class OSSFileLoad {
|
|||
}
|
||||
|
||||
//对路径里的.java文件进行编译
|
||||
SourceCodeCompiler.javaCompilerPath("/home");
|
||||
SourceCodeCompiler.javaCompilerPath("/home/app.jar");
|
||||
System.out.println("第一步");
|
||||
File outputDir = new File("/home"); // 或者是你指定的其他输出目录
|
||||
File outputDir = new File("home/app.jar"); // 或者是你指定的其他输出目录
|
||||
System.out.println("第一步");
|
||||
File[] classFiles = outputDir.listFiles(); // 获取输出目录中的所有文件
|
||||
System.out.println("第三步");
|
||||
|
|
Loading…
Reference in New Issue