GithubHelp home page GithubHelp logo

renovate-tests / data-generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lejeanbono/data-generator

0.0 0.0 0.0 616 KB

Spring Boot Library - Provide an API to generate data in your db

Java 83.34% Gherkin 16.37% JavaScript 0.29%

data-generator's Introduction

data-generator

CircleCI Codacy Badge codecov

Getting started

Gradle

implementation 'com.github.lejeanbono:data-generator-core:0.3.2'
implementation 'com.github.lejeanbono:data-generator-mongodb:0.3.2'

Maven

<!-- replace here with the latest version -->
<dependency>
    <groupId>com.github.lejeanbono</groupId>
    <artifactId>data-generator-core</artifactId>
    <version>0.3.2</version>
</dependency>
<dependency>
    <groupId>com.github.lejeanbono</groupId>
    <artifactId>data-generator-mongodb</artifactId>
    <version>0.3.2</version>
</dependency>

Activation

Add @EnableDataGenerator and import DataGeneratorMongoDBConfig

@EnableDataGenerator
@SpringBootApplication
@Import(DataGeneratorMongoDBConfig.class)
public class EApplication {
    public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}

In your application.properties :

datagenerator.pluralRessources=true

Use

Add @TestData on bean to give you access at the API

@TestData
public class MyEntity {
    @Id
    private String id;
    private String name;
}

data-generator's People

Contributors

lejeanbono avatar renovate-bot avatar renovate[bot] avatar

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.