sidebar.ts 14.4 KB
Newer Older
沉默王二's avatar
沉默王二 已提交
1
import { defineSidebarConfig } from "vuepress-theme-hope";
2 3
export const sidebarConfig = defineSidebarConfig({
  "/zhishixingqiu/": ["java-mianshi-zhinan","readme.md"],
沉默王二's avatar
沉默王二 已提交
4
  "/download/": ["java","pdf","learn-jianyi","nicearticle", "history"],
5
  "/xuexiluxian/": [
沉默王二's avatar
沉默王二 已提交
6
    {
7 8 9
      text: "Java学习路线",
      icon: "java",
      prefix: "java/",
沉默王二's avatar
沉默王二 已提交
10 11
      collapsable: true,
      children: [
沉默王二's avatar
沉默王二 已提交
12 13 14 15 16
        {
          text: "一条龙版",
          icon: "java",
          link: "yitiaolong.md",
        },
沉默王二's avatar
沉默王二 已提交
17
        {
18 19 20
          text: "并发编程学习路线",
          icon: "duoxiancheng",
          link: "thread.md",
沉默王二's avatar
沉默王二 已提交
21
        },
沉默王二's avatar
沉默王二 已提交
22 23 24 25 26
        {
          text: "JVM学习路线",
          icon: "JVM",
          link: "jvm.md",
        },
沉默王二's avatar
沉默王二 已提交
27 28
      ],
    },
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    {
      text: "C语言学习路线",
      link: "c.md",
      icon: "c",
    },
    {
      text: "C++学习路线",
      link: "ccc.md",
      icon: "cpp",
    },
    {
      text: "Python学习路线",
      link: "python.md",
      icon: "python",
    },
    {
      text: "Go语言学习路线",
      link: "go.md",
      icon: "gopher",
    },
    {
      text: "操作系统学习路线",
      link: "os.md",
      icon: "caozuoxitong",
    },
    {
      text: "前端学习路线",
      link: "qianduan.md",
      icon: "_qianduankaifa",
    },
沉默王二's avatar
沉默王二 已提交
59 60 61 62 63
    {
      text: "蓝桥杯学习路线",
      link: "lanqiaobei.md",
      icon: "lanqiao-logo",
    },
沉默王二's avatar
算法  
沉默王二 已提交
64 65 66 67 68
    {
      text: "算法和数据结构学习路线",
      link: "algorithm.md",
      icon: "algorithm",
    },
69 70 71
  ],
  // 必须放在最后面
  "/": [
沉默王二's avatar
沉默王二 已提交
72
    {
沉默王二's avatar
沉默王二 已提交
73 74 75 76 77
      text: "一、前言",
      link: "home.md",
    },
    {
      text: "二、Java核心",
沉默王二's avatar
沉默王二 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
      collapsable: true,
      children: [
        {
          prefix: "sidebar/sanfene/",
          text: "面渣逆袭",
          icon: "mianshitiku",
          collapsable: true,
          children: [
            {
              text: "Java基础篇",
              link: "javase.md",
            },
            {
              text: "Java集合框架篇",
              link: "collection.md",
            },
            {
              text: "Java并发编程篇",
              link: "javathread.md",
            },
            {
              text: "Java虚拟机篇",
              link: "jvm.md",
            },
          ],
        },
        {
          prefix: "overview/",
          text: "Java概述",
          icon: "gaishu",
          collapsable: true,
109 110 111 112
          children: [
          "what-is-java", 
          "hello-world"
          ],
沉默王二's avatar
沉默王二 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
        },
        {
          text: "Java基础语法",
          icon: "jichuyufa",
          collapsable: true,
          children: [
          "basic-grammar/basic-data-type", 
          "basic-grammar/flow-control", 
          "basic-grammar/operator", 
          "basic-grammar/javadoc",
          "basic-extra-meal/48-keywords",
          "basic-extra-meal/java-naming"
          ],
        },
        {
          text: "Java面向对象编程",
          icon: "duixiangmoxing",
          collapsable: true,
          children: [
          "oo/object-class", 
          "oo/var", 
          "oo/method", 
          "oo/construct",
          "oo/code-init", 
          "oo/abstract", 
          "oo/interface",
          "oo/static", 
          "oo/this-super", 
          "oo/final", 
          "oo/instanceof",
          "basic-extra-meal/immutable", 
          "basic-extra-meal/varables", 
          "basic-extra-meal/generic",
          "basic-extra-meal/annotation",
          "basic-extra-meal/enum",
          "basic-extra-meal/fanshe"
          ],
        },
        {
          text: "字符串&数组",
          icon: "Field-String",
          collapsable: true,
          children: [
          "string/immutable", 
          "string/constant-pool", 
          "string/intern", 
          "string/equals",
          "string/join", 
          "string/split", 
          "array/array",
          "array/print"
          ],
        },
        {
          text: "集合框架(容器)",
          icon: "rongqi",
          collapsable: true,
          children: [
          "collection/gailan", 
          "collection/arraylist", 
          "collection/linkedlist", 
          "collection/list-war-2",
          "collection/iterator-iterable", 
          "collection/fail-fast", 
          "collection/hashmap",
          ],
        },
        {
          text: "Java IO",
          icon: "shurushuchu",
          collapsable: true,
          children: [
          "io/shangtou", 
          "io/BIONIOAIO", 
          ],
        },
        {
          text: "异常处理",
          icon: "yichangchuli",
          collapsable: true,
          children: [
          "exception/gailan", 
          "exception/try-with-resouces", 
          "exception/shijian",
          "exception/npe"
          ],
        },
        {
          text: "常用工具类",
          icon: "gongju",
          collapsable: true,
          children: [
          "common-tool/arrays", 
          "common-tool/collections", 
          "common-tool/hutool",
          "common-tool/guava"
          ],
        },
        {
          text: "Java新特性",
          icon: "xintexing",
          collapsable: true,
          children: [
          "java8/stream", 
          "java8/optional", 
          "java8/Lambda",
          ],
        },
        {
          text: "Java重要知识点",
          icon: "zhongyaotishi",
          collapsable: true,
          children: [
          "basic-extra-meal/java-unicode", 
          "basic-extra-meal/int-cache", 
          "basic-extra-meal/box", 
          "basic-extra-meal/deep-copy",
          "basic-extra-meal/hashcode", 
          "basic-extra-meal/equals-hashcode", 
          "basic-extra-meal/override-overload", 
          "basic-extra-meal/Overriding", 
          "basic-extra-meal/pass-by-value",
          "basic-extra-meal/true-generic",
          "basic-extra-meal/comparable-omparator",
沉默王二's avatar
沉默王二 已提交
237 238 239 240
          "basic-extra-meal/jdk9-char-byte-string",
          "basic-extra-meal/jdk-while-for-wuxian-xunhuan",
          "basic-extra-meal/class-object",
          "basic-extra-meal/instanceof-jvm",
沉默王二's avatar
沉默王二 已提交
241 242 243 244 245 246
          ],
        },
        {
          text: "Java并发编程",
          icon: "duoxiancheng",
          collapsable: true,
沉默王二's avatar
沉默王二 已提交
247
          prefix: "thread/",
沉默王二's avatar
沉默王二 已提交
248
          children: [
沉默王二's avatar
沉默王二 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
          "wangzhe-thread",
          "thread-state-and-method",
          "thread-group-and-thread-priority",
          "why-need-thread",
          "thread-bring-some-problem",
          "jmm",
          "volatile",
          "synchronized",
          "cas",
          "lock",
          "reentrantLock",
          "ReentrantReadWriteLock",
          "condition",
          "LockSupport",
          "map",
          "ConcurrentHashMap",
          "ConcurrentLinkedQueue",
          "CopyOnWriteArrayList",
          "ThreadLocal",
          "BlockingQueue",
          "pool",
          "ScheduledThreadPoolExecutor",
          "atomic",
          "CountDownLatch",
          "fork-join",
          "shengchanzhe-xiaofeizhe"
沉默王二's avatar
沉默王二 已提交
275 276 277 278 279
          ],
        },
        {
          text: "Java虚拟机",
          icon: "JVM",
沉默王二's avatar
jvm  
沉默王二 已提交
280
          prefix: "jvm/",
沉默王二's avatar
沉默王二 已提交
281 282
          collapsable: true,
          children: [
沉默王二's avatar
jvm  
沉默王二 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
          "what-is-jvm",
          "how-run-java-code",
          "class-load",
          "class-file-jiegou",
          "bytecode",
          "zijiema-zhiling",
          "how-jvm-run-zijiema-zhiling",
          "hsdb",
          "asm",
          "compile-jdk",
          "neicun-jiegou",
          "whereis-the-object",
          "gc",
          "tujie-gc",
          "problem-tools",
          "jit",
沉默王二's avatar
沉默王二 已提交
299 300
          "oom",
          "cpu-percent-100",
沉默王二's avatar
jvm  
沉默王二 已提交
301
          "zongjie",
沉默王二's avatar
沉默王二 已提交
302 303 304 305 306
          ],
        },
      ],
    },
    {
沉默王二's avatar
沉默王二 已提交
307
      text: "三、Java企业级开发",
沉默王二's avatar
沉默王二 已提交
308 309 310
      collapsable: true,
      children: [
        {
311 312
          text: "开发工具",
          icon: "gongju",
沉默王二's avatar
沉默王二 已提交
313 314 315 316
          collapsable: true,
          children: [
          "maven/maven.md",
          "git/git-qiyuan.md",
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
          "nginx/nginx.md",
          ],
        },
        {
          text: "IDE/编辑器",
          icon: "icons-intellij_idea",
          collapsable: true,
          children: [
          "ide/4-debug-skill.md",
          ],
        },
        {
          text: "Spring",
          icon: "spring-3",
          collapsable: true,
          children: [
沉默王二's avatar
沉默王二 已提交
333 334 335 336
            {
              text: "Spring AOP扫盲",
              link: "springboot/aop-log",
            },
337 338
            {
              text: "Spring IoC扫盲",
沉默王二's avatar
沉默王二 已提交
339
              link: "springboot/ioc",
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
            },
          ],
        },
        {
          text: "SpringBoot",
          icon: "springboot",
          collapsable: true,
          children: [
            "springboot/initializr",
            "springboot/tomcat",
          ],
        },
        {
          text: "辅助工具/轮子",
          icon: "maxus-tyre-tianchong",
          collapsable: true,
          children: [
            "gongju/tabby",
沉默王二's avatar
沉默王二 已提交
358
            "gongju/warp",
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
            "gongju/chiner",
            "gongju/DBeaver",
            "gongju/knife4j",
            "kaiyuan/auto-generator",
            "gongju/junit",
            "gongju/gson",
            "gongju/fastjson",
            "gongju/jackson",
            "gongju/forest",
            "gongju/log4j",
            "gongju/log4j2",
            "gongju/logback",
            "gongju/slf4j",
            "gongju/others",
          ],
        },
        {
          text: "分布式",
          icon: "fenbushi",
          collapsable: true,
          children: [
            "elasticsearch/rumen",
            "zookeeper/jibenjieshao",
          ],
        },
        {
          text: "高性能",
          icon: "gaoxingneng",
          collapsable: true,
          children: [
            {
              text: "消息队列",
              icon: "mqxiaoxiduilieMQ",
              collapsable: true,
              children: [
                "mq/rabbitmq-rumen",
              ],
            },
沉默王二's avatar
沉默王二 已提交
397 398 399
          ],
        },
      ],
400 401
    },
    {
沉默王二's avatar
沉默王二 已提交
402
      text: "四、数据库",
403 404 405 406 407 408 409 410
      collapsable: true,
      children: [
        {
          text: "Redis",
          icon: "redis",
          collapsable: true,
          children: [
            "redis/rumen",
沉默王二's avatar
沉默王二 已提交
411
            "redis/xuebeng-chuantou-jichuan",
412 413 414 415 416 417 418 419 420 421 422 423
          ],
        },
        {
          text: "MongoDB",
          icon: "MongoDB",
          collapsable: true,
          children: [
            "mongodb/rumen",
          ],
        },
      ],
    },
沉默王二's avatar
沉默王二 已提交
424
    {
沉默王二's avatar
沉默王二 已提交
425
      text: "五、计算机基础",
沉默王二's avatar
沉默王二 已提交
426
      collapsable: true,
沉默王二's avatar
沉默王二 已提交
427
      prefix: "cs/",
沉默王二's avatar
沉默王二 已提交
428 429 430
      children: [
        {
          text: "计算机操作系统",
沉默王二's avatar
沉默王二 已提交
431
          link: "os",
沉默王二's avatar
沉默王二 已提交
432 433 434
        },
        {
          text: "计算机网络",
沉默王二's avatar
沉默王二 已提交
435
          link: "wangluo",
沉默王二's avatar
沉默王二 已提交
436 437 438
        },
      ],
    },
439
    {
沉默王二's avatar
沉默王二 已提交
440
      text: "六、求职面试",
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
      collapsable: true,
      children: [
        {
          text: "面试题集合",
          icon: "jingpinmianjingku",
          collapsable: true,
          children: [
            "baguwen/java-basic-34",
            "collection/hashmap-interview",
            "mianjing/redis12question",
            "mq/100-budiushi",
          ],
        },
        {
          text: "背诵版八股文",
          icon: "wenyanwenyuedu",
          collapsable: true,
          children: [
            "baguwen/java-basic",
            "baguwen/java-thread",
            "baguwen/jvm",
            "sidebar/herongwei/mysql",
          ],
        },
沉默王二's avatar
jvm  
沉默王二 已提交
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
        {
          text: "城市选择",
          icon: "chengshi",
          prefix: "cityselect/",
          collapsable: true,
          children: [
            "beijing",
            "chengdu",
            "guangzhou",
            "hangzhou",
            "nanjing",
            "qingdao",
            "shenzhen",
            "suzhou",
            "xian",
            "zhengzhou",
          ],
        },
483 484 485
      ],
    },
    {
沉默王二's avatar
沉默王二 已提交
486
      text: "七、学习资源",
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
      collapsable: true,
      children: [
        {
          text: "PDF下载",
          icon: "pdf",
          collapsable: true,
          children: [
            {
              text: "Java程序员常读书单",
              icon: "xiazai",
              link: "download/java.md",
            },
            {
              text: "最全最硬核的Java面试 “备战” 资料",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/US5nTxbC2nYc1hWpn5Bozw",
            },
            {
              text: "深入浅出Java多线程",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/pxKrjw_5NTdZfHOKCkwn8w",
            },
            {
              text: "GitHub星标115k+的Java教程",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/d7Z0QoChNuP9bTwAGh2QCw",
            },
            {
              text: "重学Java设计模式",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/PH5AizUAnTz0CuvJclpAKw",
            },
            {
              text: "Java版LeetCode刷题笔记",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/FyoOPIMGcaeH0z5RMhxtaQ",
            },
            {
              text: "阮一峰C语言入门教程",
              icon: "xiazai",
              link: "download/yuanyifeng-c-language.md",
            },
            {
              text: "BAT大佬的刷题笔记",
              icon: "xiazai",
              link: "download/bat-shuati.md",
            },
            {
              text: "给操作系统捋条线",
              icon: "xiazai",
              link: "https://mp.weixin.qq.com/s/puTGbgU7xQnRcvz5hxGBHA",
            },
            {
              text: "豆瓣9.1分,Pro Git中文版",
              icon: "xiazai",
              link: "download/progit.md",
            },
            {
              text: "简历模板",
              icon: "xiazai",
              link: "download/jianli.md",
            },
          ],
        },
沉默王二's avatar
沉默王二 已提交
551 552 553 554 555 556 557
        {
          text: "学习建议",
          icon: "xuexijianyi",
          collapsable: true,
          prefix: "xuexijianyi/",
          children: [
              "read-csapp",
沉默王二's avatar
沉默王二 已提交
558
              "electron-information-engineering",
沉默王二's avatar
沉默王二 已提交
559 560
          ],
        },
561 562 563
      ],
    },
    {
沉默王二's avatar
沉默王二 已提交
564
      text: "八、联系作者",
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
      collapsable: true,
      children: [
        {
          text: "心路历程",
          icon: "xinlulicheng",
          prefix: "about-the-author/",
          collapsable: true,
          children: [
            "bzhan-10wan",
            "zhihu-1000wan",
            "csdn-1000wan",
            "readme.md",
          ],
        },
      ],
    },
沉默王二's avatar
沉默王二 已提交
581
  ],
582 583 584 585
});