Skip to content

ddimensia/jPopulator

 
 

Repository files navigation

What is jPopulator ?

jPopulator is a java library that allows you to populate java beans with random data.

Populating a deep type hierarchy by hand is a tedious task and the goal of jPopulator is to make this task hassle-free.

Let's see an example, suppose you have the following classes:

If you want to populate a Person bean with jPopulator, you write this:

Populator populator = new PopulatorBuilder().build();
Person person = populator.populateBean(Person.class);

And voila! jPopulator will introspect the Person type hierarchy, generate an instance for each nested bean and populate it with random data.

Documentation

jPopulator documentation can be found in the project's wiki: https://github.com/benas/jPopulator/wiki

Contribution

You are welcome to contribute to the project with pull requests on GitHub.

If you believe you found a bug, please use the issue tracker.

If you have any question, suggestion, or feedback, do not hesitate to use the Gitter channel of the project.

Awesome contributors

Thank you all for your contributions!

License

jPopulator is released under the MIT License:

The MIT License

Copyright (c) 2015, Mahmoud Ben Hassine (mahmoud@benhassine.fr)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

About

Populate your java beans with random data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%