Skip to content

Commit 6f94ede

Browse files
committed
docs: new lesson
1 parent 6d92e48 commit 6f94ede

6 files changed

Lines changed: 502 additions & 25 deletions

source/Menu.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
- [SpringBoot 进阶](/sast-lesson-docs/SpringBoot进阶)
77
- [反射及其应用、SpringBoot 基础](/sast-lesson-docs/反射及其应用、SpringBoot基础)
88
- [异常处理、IO、多线程、Maven 及常用的库](/sast-lesson-docs/异常处理、IO、多线程、Maven及常用的库)
9+
- [如何从一名 Javaer 转变为 Gopher](/sast-lesson-docs/如何从一名Javaer转变为Gopher)

source/_posts/sast-lesson-docs/Java基础语法.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
2-
title: "Web组 第二次授课"
3-
description: "Java基础语法"
2+
title: "Java基础语法"
43
date: "Oct 26 2024"
54
categories: [授课]
65
tags: [Java]

source/_posts/sast-lesson-docs/SpringBoot进阶.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
2-
title: "Web组 第八次授课"
3-
description: "SpringBoot进阶"
2+
title: "SpringBoot进阶"
43
date: "Dec 8 2024"
54
categories: [授课]
65
tags: [Java, SpringBoot]
@@ -88,8 +87,8 @@ public class InterceptorConfig implements WebMvcConfigurer {
8887
@Resource
8988
private MyInterceptor interceptor;
9089

91-
@Override
92-
public void addInterceptors(InterceptorRegistry registry) {
90+
@Override
91+
public void addInterceptors(InterceptorRegistry registry) {
9392
registry.addInterceptor(interceptor).excludePathPatterns("/login");
9493
}
9594
}

source/_posts/sast-lesson-docs/反射及其应用、SpringBoot基础.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
title: "Web组 第六次授课"
3-
description: "反射及其应用、SpringBoot基础"
2+
title: "反射及其应用、SpringBoot基础"
43
date: "Nov 24 2024"
54
categories: [授课]
65
tags: [Java, SpringBoot]
76
---
87

9-
## 反射及其应用、SpringBoot 基础
8+
# 反射及其应用、SpringBoot 基础
109

1110
## 反射
1211

0 commit comments

Comments
 (0)