Skip to content

Commit 916db9e

Browse files
authored
feat: add user-manager application which use springboot+mongodb (#55)
* feat: add user-manager application which use springboot+mongodb Signed-off-by: IllTamer <[email protected]> * docs: add put & delete api invoke samples Signed-off-by: IllTamer <[email protected]> --------- Signed-off-by: IllTamer <[email protected]>
1 parent 28e129c commit 916db9e

File tree

20 files changed

+1219
-0
lines changed

20 files changed

+1219
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ This repo contains the sample for [Keploy's](https://keploy.io) Java Application
2020

2121
1. [employee-manager](https://github.com/keploy/samples-java/tree/main/employee-manager)
2222
2. [spring-boot-mongo](https://github.com/keploy/samples-java/tree/main/spring-boot-mongo)
23+
3. [user-manager](https://github.com/keploy/samples-java/tree/main/user-manager)
2324

2425
## Community Support ❤️
2526

user-manager/.gitignore

Lines changed: 217 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,217 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,linux,jetbrains,visualstudiocode
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,linux,jetbrains,visualstudiocode
4+
5+
### JetBrains ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/
11+
.idea/**/workspace.xml
12+
.idea/**/tasks.xml
13+
.idea/**/usage.statistics.xml
14+
.idea/**/dictionaries
15+
.idea/**/shelf
16+
17+
# AWS User-specific
18+
.idea/**/aws.xml
19+
20+
# Generated files
21+
.idea/**/contentModel.xml
22+
23+
# Sensitive or high-churn files
24+
.idea/**/dataSources/
25+
.idea/**/dataSources.ids
26+
.idea/**/dataSources.local.xml
27+
.idea/**/sqlDataSources.xml
28+
.idea/**/dynamic.xml
29+
.idea/**/uiDesigner.xml
30+
.idea/**/dbnavigator.xml
31+
32+
# Gradle
33+
.idea/**/gradle.xml
34+
.idea/**/libraries
35+
36+
# Gradle and Maven with auto-import
37+
# When using Gradle or Maven with auto-import, you should exclude module files,
38+
# since they will be recreated, and may cause churn. Uncomment if using
39+
auto-import.
40+
.idea/artifacts
41+
.idea/compiler.xml
42+
.idea/jarRepositories.xml
43+
.idea/modules.xml
44+
.idea/*.iml
45+
.idea/modules
46+
*.iml
47+
*.ipr
48+
49+
# CMake
50+
cmake-build-*/
51+
52+
# Mongo Explorer plugin
53+
.idea/**/mongoSettings.xml
54+
55+
# File-based project format
56+
*.iws
57+
58+
# IntelliJ
59+
out/
60+
61+
# mpeltonen/sbt-idea plugin
62+
.idea_modules/
63+
64+
# JIRA plugin
65+
atlassian-ide-plugin.xml
66+
67+
# Cursive Clojure plugin
68+
.idea/replstate.xml
69+
70+
# SonarLint plugin
71+
.idea/sonarlint/
72+
73+
# Crashlytics plugin (for Android Studio and IntelliJ)
74+
com_crashlytics_export_strings.xml
75+
crashlytics.properties
76+
crashlytics-build.properties
77+
fabric.properties
78+
79+
# Editor-based Rest Client
80+
.idea/httpRequests
81+
82+
# Android studio 3.1+ serialized cache file
83+
.idea/caches/build_file_checksums.ser
84+
85+
### JetBrains Patch ###
86+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
87+
88+
# *.iml
89+
# modules.xml
90+
# .idea/misc.xml
91+
# *.ipr
92+
93+
# Sonarlint plugin
94+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
95+
.idea/**/sonarlint/
96+
97+
# SonarQube Plugin
98+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
99+
.idea/**/sonarIssues.xml
100+
101+
# Markdown Navigator plugin
102+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
103+
.idea/**/markdown-navigator.xml
104+
.idea/**/markdown-navigator-enh.xml
105+
.idea/**/markdown-navigator/
106+
107+
# Cache file creation bug
108+
# See https://youtrack.jetbrains.com/issue/JBR-2257
109+
.idea/$CACHE_FILE$
110+
111+
# CodeStream plugin
112+
# https://plugins.jetbrains.com/plugin/12206-codestream
113+
.idea/codestream.xml
114+
115+
### Linux ###
116+
*~
117+
118+
# temporary files which can be created if a process still has a handle open of a deleted file
119+
.fuse_hidden*
120+
121+
# KDE directory preferences
122+
.directory
123+
124+
# Linux trash folder which might appear on any partition or disk
125+
.Trash-*
126+
127+
# .nfs files are created when an open file is removed but is still being accessed
128+
.nfs*
129+
130+
### macOS ###
131+
# General
132+
.DS_Store
133+
.AppleDouble
134+
.LSOverride
135+
136+
# Icon must end with two \r
137+
Icon
138+
139+
140+
# Thumbnails
141+
._*
142+
143+
# Files that might appear in the root of a volume
144+
.DocumentRevisions-V100
145+
.fseventsd
146+
.Spotlight-V100
147+
.TemporaryItems
148+
.Trashes
149+
.VolumeIcon.icns
150+
.com.apple.timemachine.donotpresent
151+
152+
# Directories potentially created on remote AFP share
153+
.AppleDB
154+
.AppleDesktop
155+
Network Trash Folder
156+
Temporary Items
157+
.apdisk
158+
159+
### VisualStudioCode ###
160+
.vscode/*
161+
!.vscode/settings.json
162+
!.vscode/tasks.json
163+
!.vscode/launch.json
164+
!.vscode/extensions.json
165+
!.vscode/*.code-snippets
166+
167+
# Local History for Visual Studio Code
168+
.history/
169+
170+
# Built Visual Studio Code Extensions
171+
*.vsix
172+
173+
### VisualStudioCode Patch ###
174+
# Ignore all local history of files
175+
.history
176+
.ionide
177+
.env
178+
target/springbootapp-0.0.1-SNAPSHOT.jar
179+
target/springbootapp-0.0.1-SNAPSHOT.jar.original
180+
.jar
181+
# Support for Project snippet scope
182+
183+
# End of https://www.toptal.com/developers/gitignore/api/macos,linux,jetbrains,visualstudiocode
184+
185+
HELP.md
186+
target/
187+
!.mvn/wrapper/maven-wrapper.jar
188+
!**/src/main/**/target/
189+
!**/src/test/**/target/
190+
191+
### STS ###
192+
.apt_generated
193+
.classpath
194+
.factorypath
195+
.project
196+
.settings
197+
.springBeans
198+
.sts4-cache
199+
200+
### IntelliJ IDEA ###
201+
.idea
202+
*.iws
203+
*.iml
204+
*.ipr
205+
206+
### NetBeans ###
207+
/nbproject/private/
208+
/nbbuild/
209+
/dist/
210+
/nbdist/
211+
/.nb-gradle/
212+
build/
213+
!**/src/main/**/build/
214+
!**/src/test/**/build/
215+
216+
### VS Code ###
217+
.vscode/

0 commit comments

Comments
 (0)