--9--10
parent
08bc9119b8
commit
3932bc6e50
|
@ -10,7 +10,7 @@ COPY ./cloud-etl-server/target/cloud-engine.jar /home/app.jar
|
||||||
|
|
||||||
COPY ./cloud-etl-server/target/classes /home/lib
|
COPY ./cloud-etl-server/target/classes /home/lib
|
||||||
|
|
||||||
#COPY ./cloud-etl-server/target/classes/com/muyu/home/lib/com/muyu/abstract/*.jar /home/lib/
|
COPY ./cloud-etl-server/target/classes/com/muyu/home/lib/com/muyu/abstract/*.jar /home/lib/
|
||||||
|
|
||||||
ENTRYPOINT ["java","-jar","-Dfile.encoding=UTF-8"]
|
ENTRYPOINT ["java","-jar","-Dfile.encoding=UTF-8"]
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
//package com.muyu.abstracts;
|
package com.muyu.abstracts;
|
||||||
//import com.muyu.abstracts.DataEngineValueActuator;
|
import com.muyu.abstracts.DataEngineValueActuator;
|
||||||
//import com.muyu.abstracts.DataValue;
|
import com.muyu.abstracts.DataValue;
|
||||||
//
|
|
||||||
///**
|
/**
|
||||||
// * @Author: qdm
|
* @Author: qdm
|
||||||
// * @date: 2024/09/10 09:40:42
|
* @date: 2024/09/10 09:40:42
|
||||||
// * @Description:
|
* @Description:
|
||||||
// * @Version: 1.0
|
* @Version: 1.0
|
||||||
// */
|
*/
|
||||||
//public class PwoerEngine extends DataEngineValueActuator{
|
public class PwoerEngine extends DataEngineValueActuator{
|
||||||
// @Override
|
@Override
|
||||||
// public DataValue run () {
|
public DataValue run () {
|
||||||
// DataValue dataValue = get();
|
DataValue dataValue = get();
|
||||||
// if(dataValue.getValue()==null || dataValue.getValue().equals("")){
|
if(dataValue.getValue()==null || dataValue.getValue().equals("")){
|
||||||
// System.out.println("数据为空,需要丢弃");
|
System.out.println("数据为空,需要丢弃");
|
||||||
// }else{
|
}else{
|
||||||
// System.out.println("数据非空:"+dataValue.getValue());
|
System.out.println("数据非空:"+dataValue.getValue());
|
||||||
// }
|
}
|
||||||
// return dataValue;
|
return dataValue;
|
||||||
// }
|
}
|
||||||
//}
|
}
|
||||||
|
|
Loading…
Reference in New Issue