--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/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"]
|
||||
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
//package com.muyu.abstracts;
|
||||
//import com.muyu.abstracts.DataEngineValueActuator;
|
||||
//import com.muyu.abstracts.DataValue;
|
||||
//
|
||||
///**
|
||||
// * @Author: qdm
|
||||
// * @date: 2024/09/10 09:40:42
|
||||
// * @Description:
|
||||
// * @Version: 1.0
|
||||
// */
|
||||
//public class PwoerEngine extends DataEngineValueActuator{
|
||||
// @Override
|
||||
// public DataValue run () {
|
||||
// DataValue dataValue = get();
|
||||
// if(dataValue.getValue()==null || dataValue.getValue().equals("")){
|
||||
// System.out.println("数据为空,需要丢弃");
|
||||
// }else{
|
||||
// System.out.println("数据非空:"+dataValue.getValue());
|
||||
// }
|
||||
// return dataValue;
|
||||
// }
|
||||
//}
|
||||
package com.muyu.abstracts;
|
||||
import com.muyu.abstracts.DataEngineValueActuator;
|
||||
import com.muyu.abstracts.DataValue;
|
||||
|
||||
/**
|
||||
* @Author: qdm
|
||||
* @date: 2024/09/10 09:40:42
|
||||
* @Description:
|
||||
* @Version: 1.0
|
||||
*/
|
||||
public class PwoerEngine extends DataEngineValueActuator{
|
||||
@Override
|
||||
public DataValue run () {
|
||||
DataValue dataValue = get();
|
||||
if(dataValue.getValue()==null || dataValue.getValue().equals("")){
|
||||
System.out.println("数据为空,需要丢弃");
|
||||
}else{
|
||||
System.out.println("数据非空:"+dataValue.getValue());
|
||||
}
|
||||
return dataValue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue