@@ -115,14 +115,50 @@ export default defineConfig({
115115 collapsed : false ,
116116 items : [
117117 {
118- text : 'Java 基础' ,
119- items : [
120- { text : 'Optional' , link : '/basic/optional/README' } ,
121- { text : 'Functional Interface' , link : '/basic/functional-interface/README' } ,
122- { text : 'Java 新语法' , link : '/basic/java-new-syntax/README' } ,
123- { text : 'ThreadLocal' , link : '/basic/thread-local/README' } ,
124- { text : 'Scoped Value' , link : '/basic/scoped-value/README' } ,
125- { text : '文件处理' , link : '/basic/file/README' } ,
118+ text : '基础语法与面向对象' ,
119+ items : [
120+ { text : 'Java 类型基础' , link : '/basic/java-type-basic/README' } ,
121+ { text : '面向对象基础' , link : '/basic/oop-basic/README' } ,
122+ { text : '泛型' , link : '/basic/generics/README' } ,
123+ { text : '异常处理' , link : '/basic/exception-handling/README' } ,
124+ { text : 'Java 新语法' , link : '/basic/java-new-syntax/README' } ,
125+ ]
126+ } ,
127+ {
128+ text : '函数式编程' ,
129+ items : [
130+ { text : 'Optional' , link : '/basic/optional/README' } ,
131+ { text : 'Functional Interface' , link : '/basic/functional-interface/README' } ,
132+ { text : 'Lambda 表达式' , link : '/basic/lambda/README' } ,
133+ { text : 'Stream API' , link : '/basic/stream-api/README' } ,
134+ ]
135+ } ,
136+ {
137+ text : '集合与常用 API' ,
138+ items : [
139+ { text : '集合框架' , link : '/basic/collections/README' } ,
140+ { text : '日期时间 API' , link : '/basic/datetime-api/README' } ,
141+ { text : '文件处理' , link : '/basic/file/README' } ,
142+ ]
143+ } ,
144+ {
145+ text : '注解与反射' ,
146+ items : [
147+ { text : '注解与反射' , link : '/basic/annotation-reflection/README' } ,
148+ ]
149+ } ,
150+ {
151+ text : '并发编程' ,
152+ items : [
153+ { text : '并发基础' , link : '/basic/concurrency-basic/README' } ,
154+ { text : 'ThreadLocal' , link : '/basic/thread-local/README' } ,
155+ { text : 'Scoped Value' , link : '/basic/scoped-value/README' } ,
156+ ]
157+ } ,
158+ {
159+ text : 'JVM' ,
160+ items : [
161+ { text : 'JVM 基础' , link : '/basic/jvm-basic/README' } ,
126162 ]
127163 }
128164 ]
0 commit comments