-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: tollbooth demo data generator (#874)
* collecting inputs for data-gen --------- Signed-off-by: Mark Nelson <mark.x.nelson@oracle.com>
- Loading branch information
1 parent
f97c0d0
commit d59196a
Showing
11 changed files
with
1,331 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>3.2.4</version> | ||
<relativePath/> <!-- lookup parent from repository --> | ||
</parent> | ||
<groupId>com.example</groupId> | ||
<artifactId>data-generator</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<name>data-generator</name> | ||
<description>Demo project for Spring Boot</description> | ||
<properties> | ||
<java.version>21</java.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
13 changes: 13 additions & 0 deletions
13
...demo/data-generator/src/main/java/com/example/datagenerator/DataGeneratorApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.example.datagenerator; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication | ||
public class DataGeneratorApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(DataGeneratorApplication.class, args); | ||
} | ||
|
||
} |
1 change: 1 addition & 0 deletions
1
tolldemo/data-generator/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
spring.application.name=data-generator |
100 changes: 100 additions & 0 deletions
100
tolldemo/data-generator/src/main/resources/mens-names.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
James | ||
Robert | ||
John | ||
Michael | ||
David | ||
William | ||
Richard | ||
Joseph | ||
Thomas | ||
Christopher | ||
Charles | ||
Daniel | ||
Matthew | ||
Anthony | ||
Mark | ||
Donald | ||
Steven | ||
Andrew | ||
Paul | ||
Joshua | ||
Kenneth | ||
Kevin | ||
Brian | ||
George | ||
Timothy | ||
Ronald | ||
Jason | ||
Edward | ||
Jeffrey | ||
Ryan | ||
Jacob | ||
Gary | ||
Nicholas | ||
Eric | ||
Jonathan | ||
Stephen | ||
Larry | ||
Justin | ||
Scott | ||
Brandon | ||
Benjamin | ||
Samuel | ||
Gregory | ||
Alexander | ||
Patrick | ||
Frank | ||
Raymond | ||
Jack | ||
Dennis | ||
Jerry | ||
Tyler | ||
Aaron | ||
Jose | ||
Adam | ||
Nathan | ||
Henry | ||
Zachary | ||
Douglas | ||
Peter | ||
Kyle | ||
Noah | ||
Ethan | ||
Jeremy | ||
Walter | ||
Christian | ||
Keith | ||
Roger | ||
Terry | ||
Austin | ||
Sean | ||
Gerald | ||
Carl | ||
Harold | ||
Dylan | ||
Arthur | ||
Lawrence | ||
Jordan | ||
Jesse | ||
Bryan | ||
Billy | ||
Bruce | ||
Gabriel | ||
Joe | ||
Logan | ||
Alan | ||
Juan | ||
Albert | ||
Willie | ||
Elijah | ||
Wayne | ||
Randy | ||
Vincent | ||
Mason | ||
Roy | ||
Ralph | ||
Bobby | ||
Russell | ||
Bradley | ||
Philip | ||
Eugene |
Oops, something went wrong.