Skip to content

Commit 28cef67

Browse files
author
danyuandefine
committed
提交框架1.0版本代码
1 parent 6ba304c commit 28cef67

File tree

300 files changed

+21797
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

300 files changed

+21797
-0
lines changed

.gitignore

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# ---> Java
2+
*.class
3+
4+
# Mobile Tools for Java (J2ME)
5+
.mtj.tmp/
6+
7+
# Package Files #
8+
*.jar
9+
*.war
10+
*.ear
11+
12+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
13+
hs_err_pid*
14+
15+
# ---> Eclipse
16+
*.pydevproject
17+
.metadata
18+
.gradle
19+
bin/
20+
tmp/
21+
*.tmp
22+
*.bak
23+
*.swp
24+
*~.nib
25+
local.properties
26+
.settings/
27+
.loadpath
28+
29+
# Eclipse Core
30+
.project
31+
32+
# External tool builders
33+
.externalToolBuilders/
34+
35+
# Locally stored "Eclipse launch configurations"
36+
*.launch
37+
38+
# CDT-specific
39+
.cproject
40+
41+
# JDT-specific (Eclipse Java Development Tools)
42+
.classpath
43+
44+
# Java annotation processor (APT)
45+
.factorypath
46+
47+
# PDT-specific
48+
.buildpath
49+
50+
# sbteclipse plugin
51+
.target
52+
53+
# TeXlipse plugin
54+
.texlipse
55+
56+
# ---> JetBrains
57+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
58+
59+
*.iml
60+
61+
## Directory-based project format:
62+
.idea/
63+
# if you remove the above rule, at least ignore the following:
64+
65+
# User-specific stuff:
66+
# .idea/workspace.xml
67+
# .idea/tasks.xml
68+
# .idea/dictionaries
69+
70+
# Sensitive or high-churn files:
71+
# .idea/dataSources.ids
72+
# .idea/dataSources.xml
73+
# .idea/sqlDataSources.xml
74+
# .idea/dynamic.xml
75+
# .idea/uiDesigner.xml
76+
77+
# Gradle:
78+
# .idea/gradle.xml
79+
# .idea/libraries
80+
81+
# Mongo Explorer plugin:
82+
# .idea/mongoSettings.xml
83+
84+
## File-based project format:
85+
*.ipr
86+
*.iws
87+
88+
## Plugin-specific files:
89+
90+
# IntelliJ
91+
/out/
92+
93+
# mpeltonen/sbt-idea plugin
94+
.idea_modules/
95+
96+
# JIRA plugin
97+
atlassian-ide-plugin.xml
98+
99+
# Crashlytics plugin (for Android Studio and IntelliJ)
100+
com_crashlytics_export_strings.xml
101+
crashlytics.properties
102+
crashlytics-build.properties
103+
104+
#Svn
105+
.svn/
106+
#log
107+
*.log
108+
logs/
109+
*.log.*
110+
111+
#target
112+
target/

README.md

+506
Large diffs are not rendered by default.

doc/MORE.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<center><h1>说明</h1></center>
2+
3+
> 作者正在努力完善文档,请耐心等待更多文档更新哦!

doc/demos.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<center><h1>使用easy-spring-boot-api框架极简demo示例</h1></center>
2+
3+
## 1 swagger接口文档使用示例
4+
5+
[请参考使用示例](demos/swagger接口文档使用示例.md)
6+
7+
## 2 参数校验示例
8+
9+
[请参考使用示例](demos/参数校验示例.md)
10+
11+
## 3 自动填充API响应参数示例
12+
13+
[请参考使用示例](demos/自动填充API响应参数示例.md)
14+
15+
## 4 错误码使用示例
16+
17+
[请参考使用示例](demos/错误码使用示例.md)
18+
19+
## 5 接口响应国际化翻译示例
20+
21+
[请参考使用示例](demos/接口响应国际化翻译示例.md)
22+
23+
## 6 使用数字签名示例
24+
25+
[请参考使用示例](demos/使用数字签名示例.md)
26+
27+
## 7 接口数据加解密示例
28+
29+
[请参考使用示例](demos/接口数据加解密示例.md)
30+
31+
## 8 接口防重复提交功能示例
32+
33+
[请参考使用示例](demos/接口防重复提交功能示例.md)
34+
35+
## 9 接口查询缓存使用示例
36+
37+
[请参考使用示例](demos/接口查询缓存使用示例.md)
38+
39+
## 10 接口用户会话功能使用示例
40+
41+
[请参考使用示例](MORE.md)
42+
43+
## 11 系统参数使用示例
44+
45+
[请参考使用示例](MORE.md)
46+
47+
## 12 系统错误使用示例
48+
49+
[请参考使用示例](MORE.md)
50+
51+
## 13 国际化翻译器使用示例
52+
53+
[请参考使用示例](MORE.md)
54+
55+
## 14 缓存管理器使用示例
56+
57+
[请参考使用示例](MORE.md)
58+
59+
## 15 接口响应系统参数使用示例
60+
61+
[请参考使用示例](MORE.md)
62+
63+
## 16 静态资源使用示例
64+
65+
[请参考使用示例](MORE.md)
58.3 KB
Loading

0 commit comments

Comments
 (0)