Hi guys,

I'm developing a dataflow client whose backend, exported as jar, allows
users to convert dataflows to a Flink file .java with some code inside. The
generated file naturally calls some classes I have in jar file, like
MapFunction, DataSet.

My question is:
How to compile the generated file and pack it into a jar file, so I can
execute it with Flink?

I have tried several methods like:

   - javac -cp backend.jar:. GeneratedClass.java
   - javac -cp ".:backend.jar" GeneratedClass.java
   - javac -cp ".:./backend.jar" GeneratedClass.java

with no success.

I receive errors like:
GeneratedClass.java:2: error: package org.apache.flink.api.common.functions
does not exist GeneratedClass.java:3: error: package
org.apache.flink.api.java does not exist


Thanks a lot,

Giacomo

Reply via email to