1

I'm new to JHipster and I'm doing some experiment.
I created my fist JHipster App and imported the "default" JDL that can be downloaded from here: JDL Studio (without any modification).

After the import, I see my entity filled with some demo data and some csv file has been created under config/liquidbase/data with the same info.

I checked the jhipster-jdl.jh file and there is no data specification there.

I don't understand where that data is created and what is the logic that allows creating that dummy data.

gixlg
  • 1,193
  • 1
  • 9
  • 21

1 Answers1

11

The values are generated by Faker.js in the table.csv template. They are based on the column name, and are not configurable at this point.

If you don't want the data to be inserted into the database, you can remove the faker context from the config in application-dev.yml

Jon Ruddell
  • 6,244
  • 1
  • 22
  • 40