Giter VIP home page Giter VIP logo

Comments (3)

fmarchioni avatar fmarchioni commented on September 25, 2024 1

Thanks for your feedback! Indeed I was just replying that I'm unable to change the seed as in the real example I'm attaching a static schema to my Java Beans. With your suggestion it works perfectly thanks!

public class CustomerSchema {
      public static Schema<Object, ?> defaultSchema() {
         var faker = new Faker(Locale.getDefault(), ThreadLocalRandom.current());
            return Schema.of(
            field("name", () -> faker.name().firstName()),
            field("surname", () -> faker.name().lastName())
            );
     }
    
}

@FakeForSchema("com.sample.model.CustomerSchema#defaultSchema") 
public class Customer {
}

from datafaker.

kingthorin avatar kingthorin commented on September 25, 2024

If your random seed is static wouldn't that be expected? (Note I haven't tested or played with this functionality, so I'm kinda guessing but that stands out.)

from datafaker.

snuyanzin avatar snuyanzin commented on September 25, 2024

That's the idea of repeatability feature: if something is invoked for the same seed in your case new Random(100L) after same steps the result will be same.

If you want to have different result each time and do not care about repeatability then just use e.g. ThreadLocalRandom.current() or some other similar Random implementation like

    public static void main(String[] args) {
        BaseFaker faker = new BaseFaker(ThreadLocalRandom.current());
        Schema<Object, ?> schema = Schema.of(
            field("Text", () -> faker.name().firstName()),
            field("Bool", () -> faker.bool().bool())
        );

        JsonTransformer<Object> transformer = JsonTransformer.builder().build();
        String json = transformer.generate(schema, 1);

        System.out.println(json);
    }

from datafaker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.