Closed Tenischev closed 2 weeks ago
This issue has been automatically marked as stale because it has not had recent activity :sleeping:
It will be closed in 120 days if no further activity occurs. To unstale this issue, add a comment with a detailed explanation.
There can be many reasons why some specific issue has no activity. The most probable cause is lack of time, not lack of interest. AsyncAPI Initiative is a Linux Foundation project not owned by a single for-profit company. It is a community-driven initiative ruled under open governance model.
Let us figure out together how to push this issue forward. Connect with us through one of many communication channels we established here.
Thank you for your patience :heart:
This issue has been automatically marked as stale because it has not had recent activity :sleeping:
It will be closed in 120 days if no further activity occurs. To unstale this issue, add a comment with a detailed explanation.
There can be many reasons why some specific issue has no activity. The most probable cause is lack of time, not lack of interest. AsyncAPI Initiative is a Linux Foundation project not owned by a single for-profit company. It is a community-driven initiative ruled under open governance model.
Let us figure out together how to push this issue forward. Connect with us through one of many communication channels we established here.
Thank you for your patience :heart:
Reason/Context
I observed the strange difference between how
JavaGenerator
andJavaFileGenerator
are instanced and used. Issue found during exploration of possibility to use Modelina for model generation in Java spring template, see #https://github.com/asyncapi/java-spring-template/pull/342 In case ofJavaGenerator
:In case of
JavaFileGenerator
:So, difference in how
options
are passed.Description
I would expect similar way to create an instance of
JavaGenerator
andJavaFileGenerator
. ThusJavaFileGenerator
is instanced withoptions
andgenerateToFiles
method is not require them. This means, thatAbstractFileGenerator
interface also should be changed.During Slack discussion there was argument from @jonaslagoni that
options
are passed togenerateToFiles
because of package name which is related to outputPath. But for Java class it would be incorrect if outputPath not match with package name. Thus, additionally I would suggest to use following logic to determine destination path where files will be stored:resultPath = outputDir + packageName
e.g. outputDir = "generated-source" packageName = "com.asyncapi.template.java" then resultPath = generated-source/com/asyncapi/template/java