I Need find tools for my project , has someone know, tools for code generated write with java code .... i've try to use appfuse but i still find another tools for that ... please help ... Thanks

Dani AI

Generated

For : the pattern you describe — supply a namespace/project name and get a ready project scaffold — is exactly what project archetypes and template-based generators are for. As warned, generated code can be harder to fix later, so prefer generators that keep generated code separate from hand-written code and that support safe regeneration.

Practical options to evaluate:

  • Maven Archetype — good for bootstrapping Java project skeletons with placeholders like groupId/artifactId.
  • Spring Initializr — fast scaffolding for Spring Boot projects; good if your apps use Spring.
  • JHipster — full-stack generator (Spring Boot + front end) if you want richer, opinionated scaffolds.
  • Telosys — lightweight template-based generator that works well for CRUD/entity scaffolding using FreeMarker templates.
  • OpenAPI Generator — if you design APIs first, generate server stubs and clients from an OpenAPI spec.

Suggested workflow: create a small set of template files with placeholders (package, projectName, etc.), put templates under version control, expose a CLI or Maven/Gradle plugin to perform variable substitution and create the project, and add a quick smoke test (build + run) so every generated project is validated automatically.

Troubleshooting and cautions: keep generated artifacts in a clear package or folder so custom code is never overwritten; document template variables; watch encoding and line endings; and add regeneration hooks only for boilerplate (avoid regenerating business logic). For an immediate start, try a simple Maven archetype or Telosys template to handle the namespace/project-name substitution you described.

Recommended Answers

All 3 Replies

I Need find tools for my project , has someone know, tools for code generated write with java code .... i've try to use appfuse but i still find another tools for that ... please help ... Thanks

do you need tools to write your code, as in an IDE, or do you expect us to deliver the code for your project? if you want a good 'tool' to begin coding in, I'd suggest Notepad++, but where it comes to "generate codes" I 'd advice against it. it's easier to correct your own code, than to correct code that was generated for you

thanks , i've try to used notepad++ and its very shopisticated ... but i still need tools for generated my code automatically and also can spread to the project as a template base customizing from user input ... example i just only giving name of namespace , name of my project , the tools directly read them and my template project can created that will decrease our develop time.............. , may be someone knew about that .... thanks for your help.:icon_cheesygrin:

It's very difficult to understand what you are asking for, but it sounds like you might want to look at these:
Netbeans
Eclipse

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.