Java action generation from Microflow

3
Sometimes I need to write Java Actions which can be done for 75% in microflows but for Java is needed for the rest. I am not een expert in Java and writing microflow is far more easy. It is possible to create Java Code from a microflow?
asked
3 answers
2

Now that's a cool idea! And definitely possible, but we do not have something like that planned. I might turn it into a hobby project but I give no guarantees :-)

answered
0

The other way around is to insert a Java Action in a microflow that has all the context (Variables, Iterators etc). Would be more in line the the (imho good) principle of Mendix not to generate code but to interpret models.

answered
0

You can already call a Java action anywhere inside a microflow and pass all the variables you need to it. So you can model most of your logic using a microflow and then call a Java action for a small part.

answered