Is there a Maven plugin for creating AS3 classes from Java for BlazeDS?

I am looking for a maven plugin that will generate ActionScript3 classes from Java classes to access them by deleting objects. I saw FlexMojo, but it uses the GraniteDS generator, which creates some problems when it comes to Enum map objects (which can be fixed through a workaround that is described here: http://dev.c-ware.de/confluence/display / PUBLIC / Flexmojos + generated + AS3 + model + with + Enum + support + using + BlazeDS? FocusedCommentId = 7634946 & # comment-7634946 , if you applied your path here, this can be useful) when working with BlazeDS.

All I have found so far are people who explain how to create VO classes on the flexible side using Flash Builder 4, but this solution cannot be used in an industrial development environment.

Thanks in advance for any conclusions on this.

+4
source share
2 answers

I also found this one, and although it is not a maven plugin, it could be turned into one:

https://sourceforge.net/projects/cleartoolkit/

It was created by the guys who created the book "Enterprise Development with Flex." Look for the DTO2Fx utility.

+1
source

Source: https://habr.com/ru/post/1312435/


All Articles