This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
hummingbird
/
spring-boot-demo
Not watched
Unwatch
Watch all
Watch but not notify
2
Star
0
Fork
0
Code
Releases
0
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
🎉
使用 Guava 限流 demo 初始化
pull/1/head
Yangkai.Shen
5 years ago
parent
6532372683
commit
2644612ef3
4 changed files
with
14 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
spring-boot-demo-ratelimit-guava/README.md
+8
-0
spring-boot-demo-ratelimit-guava/src/main/java/com/xkcoding/ratelimit/guava/SpringBootDemoRatelimitGuavaApplication.java
+0
-1
spring-boot-demo-ratelimit-guava/src/main/resources/application.properties
+4
-0
spring-boot-demo-ratelimit-guava/src/main/resources/application.yml
+ 2
- 0
spring-boot-demo-ratelimit-guava/README.md
View File
@@ -0,0 +1,2 @@
# spring-boot-demo-ratelimit-guava
+ 8
- 0
spring-boot-demo-ratelimit-guava/src/main/java/com/xkcoding/ratelimit/guava/SpringBootDemoRatelimitGuavaApplication.java
View File
@@ -3,6 +3,14 @@ package com.xkcoding.ratelimit.guava;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* <p>
* 启动器
* </p>
*
* @author yangkai.shen
* @date Created in 2019/9/12 14:06
*/
@SpringBootApplication
public class SpringBootDemoRatelimitGuavaApplication {
+ 0
- 1
spring-boot-demo-ratelimit-guava/src/main/resources/application.properties
View File
@@ -1 +0,0 @@
+ 4
- 0
spring-boot-demo-ratelimit-guava/src/main/resources/application.yml
View File
@@ -0,0 +1,4 @@
server:
port: 8080
servlet:
context-path: /demo
Write
Preview
Loading…
Cancel
Save