Skip to content

Commit fe63cf4

Browse files
author
ZuRun's MacBook
committed
插件也使用阿里云maven镜像仓库
1 parent 5f37558 commit fe63cf4

4 files changed

Lines changed: 30 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
#SpringBootTest
2+
3+
## 目录
4+
5+
- common
6+
- basis
7+
- redis
8+
- shiro
9+
- server
10+
-web
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
${AnsiColor.BLUE}
2+
## ## ### ######## ######## ## ## ## ## ######## ## ## ## ## ######## ### ########
3+
## ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## ## ## ## ## ##
4+
## ## ## ## ## ## ## ## #### #### ## ## ## ## ## #### ## ## ## ## ##
5+
######### ## ## ######## ######## ## ## ## ## ###### ## ## ## ## ###### ## ## ########
6+
## ## ######### ## ## ## ## #### ## ## ## ## ## ## ######### ## ##
7+
## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## ## ## ##
8+
## ## ## ## ## ## ## ## ## ######## ### ### ## ######## ## ## ## ##
9+
${AnsiColor.CYAN}
10+
Application Version: ${application.version}${application.formatted-version}
11+
Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version}

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@
4040
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
4141
</repository>
4242
</repositories>
43+
<pluginRepositories>
44+
<pluginRepository>
45+
<id>aliyun-plugin</id>
46+
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
47+
<snapshots>
48+
<enabled>false</enabled>
49+
</snapshots>
50+
</pluginRepository>
51+
</pluginRepositories>
4352

4453
<dependencies>
4554
<!--spring-boot web支持-->

server/web/src/main/java/me/zuhr/demo/service/TestService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class TestService {
1616

1717
public String test(String key) {
1818
// redisUtils.set(key, "xxxxxxxkk_" + System.currentTimeMillis());
19-
String value = redisUtils.getValue(key);
19+
String value = redisUtils.getString(key);
2020
System.out.println(value);
2121
return value;
2222
}

0 commit comments

Comments
 (0)