"I am using spring maven project and want to implement Scaffolding in it so that I can generate DAO's, services and spring form dynamically depending upon model. How it can be achieved?"
First of all, spring roo generates view as .jspx pages which uses Dojo and Dijit (I don't understand why roo didn't use Jquery). Roo is very much restrictive to editing the generated view files.
So if you scaffold using roo, you would find your hands are strongly tied (just as mine now is).
My suggestion is, build your models as you wish, but for scaffolding, you should use JSF or GWT. Both are better than using Dojo. Both are available as spring roo add ons. Hope that helps.
Take a look at spring roo. As this offers what you are searching.
Let's have a look at this tutorial : https://sites.google.com/site/telosystutorial/
It explains how to generate a full web application (Spring MCV - JPA or Spring Data) from a database
It uses a free Eclipse plugin named "Telosys Tools" (a code generator with scaffolding)
You can try Telosys http://www.telosys.org
It's very efficient for scaffolding (from database or from specific model) You can customize the templates in order to generate exactly what you want
See also https://modeling-languages.com/telosys-tools-the-concept-of-lightweight-model-for-code-generation/
There is a good Scaffold for Spring Boot you can use for startup: https://github.com/runlala/SpringBootScaffold
© 2022 - 2024 — McMap. All rights reserved.