Web / Apache OFBiz Interview questions
What are seed, seed-initial, and demo data types in OFBiz?
OFBiz classifies its XML data files by purpose so you can load only what a given environment needs:
| Type | Contains | Used in |
seed | Core reference data the app needs to function (enum types, status codes) | Every environment, including production |
seed-initial | One-time setup data (initial admin user, default company) | First install only |
demo | Sample products, customers, and orders | Development and evaluation only |
The Gradle tasks loadAll, loadSeed, and similar targets let you pick the right combination - for example, loading seed and seed-initial but skipping demo data when preparing a real production instance.
More Related questions...