sidebar.ts 13.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","nicearticle", "history"],
5
  "/xuexiluxian/": [
沉默王二's avatar
沉默王二 已提交
6
    {
7 8 9
      text: "Java学习路线",
      icon: "java",
      prefix: "java/",
沉默王二's avatar
沉默王二 已提交
10 11 12
      collapsable: true,
      children: [
        {
13 14 15
          text: "并发编程学习路线",
          icon: "duoxiancheng",
          link: "thread.md",
沉默王二's avatar
沉默王二 已提交
16 17 18
        },
      ],
    },
19 20 21 22 23 24 25 26 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
    {
      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
沉默王二 已提交
52
    {
沉默王二's avatar
沉默王二 已提交
53 54 55 56 57
      text: "一、前言",
      link: "home.md",
    },
    {
      text: "二、Java核心",
沉默王二's avatar
沉默王二 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
      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,
89 90 91 92
          children: [
          "what-is-java", 
          "hello-world"
          ],
沉默王二's avatar
沉默王二 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 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
        },
        {
          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",
          ],
        },
        {
          text: "Java并发编程",
          icon: "duoxiancheng",
          collapsable: true,
沉默王二's avatar
沉默王二 已提交
223
          prefix: "thread/",
沉默王二's avatar
沉默王二 已提交
224
          children: [
沉默王二's avatar
沉默王二 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
          "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
沉默王二 已提交
251 252 253 254 255
          ],
        },
        {
          text: "Java虚拟机",
          icon: "JVM",
沉默王二's avatar
jvm  
沉默王二 已提交
256
          prefix: "jvm/",
沉默王二's avatar
沉默王二 已提交
257 258
          collapsable: true,
          children: [
沉默王二's avatar
jvm  
沉默王二 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
          "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
沉默王二 已提交
275 276
          "oom",
          "cpu-percent-100",
沉默王二's avatar
jvm  
沉默王二 已提交
277
          "zongjie",
沉默王二's avatar
沉默王二 已提交
278 279 280 281 282
          ],
        },
      ],
    },
    {
沉默王二's avatar
沉默王二 已提交
283
      text: "三、Java企业级开发",
沉默王二's avatar
沉默王二 已提交
284 285 286
      collapsable: true,
      children: [
        {
287 288
          text: "开发工具",
          icon: "gongju",
沉默王二's avatar
沉默王二 已提交
289 290 291 292
          collapsable: true,
          children: [
          "maven/maven.md",
          "git/git-qiyuan.md",
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
          "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: [
            {
              text: "Spring IoC扫盲",
              link: "https://mp.weixin.qq.com/s/CcL3cEcQRi-KhwTwmf5A0w",
            },
          ],
        },
        {
          text: "SpringBoot",
          icon: "springboot",
          collapsable: true,
          children: [
            "springboot/initializr",
            "springboot/tomcat",
          ],
        },
        {
          text: "辅助工具/轮子",
          icon: "maxus-tyre-tianchong",
          collapsable: true,
          children: [
            "gongju/tabby",
            "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
沉默王二 已提交
368 369 370
          ],
        },
      ],
371 372
    },
    {
沉默王二's avatar
沉默王二 已提交
373
      text: "四、数据库",
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
      collapsable: true,
      children: [
        {
          text: "Redis",
          icon: "redis",
          collapsable: true,
          children: [
            "redis/rumen",
          ],
        },
        {
          text: "MongoDB",
          icon: "MongoDB",
          collapsable: true,
          children: [
            "mongodb/rumen",
          ],
        },
      ],
    },
沉默王二's avatar
沉默王二 已提交
394
    {
沉默王二's avatar
沉默王二 已提交
395
      text: "五、计算机基础",
沉默王二's avatar
沉默王二 已提交
396 397 398 399 400 401 402 403 404 405 406 407
      collapsable: true,
      children: [
        {
          text: "计算机操作系统",
          link: "https://mp.weixin.qq.com/s/G9ZqwEMxjrG5LbgYwM5ACQ",
        },
        {
          text: "计算机网络",
          link: "https://mp.weixin.qq.com/s/7EddtzpwIRvYfw34QE4zvw",
        },
      ],
    },
408
    {
沉默王二's avatar
沉默王二 已提交
409
      text: "六、求职面试",
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
      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  
沉默王二 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
        {
          text: "城市选择",
          icon: "chengshi",
          prefix: "cityselect/",
          collapsable: true,
          children: [
            "beijing",
            "chengdu",
            "guangzhou",
            "hangzhou",
            "nanjing",
            "qingdao",
            "shenzhen",
            "suzhou",
            "xian",
            "zhengzhou",
          ],
        },
452 453 454
      ],
    },
    {
沉默王二's avatar
沉默王二 已提交
455
      text: "七、学习资源",
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 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
      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
沉默王二 已提交
523
      text: "八、联系作者",
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
      collapsable: true,
      children: [
        {
          text: "心路历程",
          icon: "xinlulicheng",
          prefix: "about-the-author/",
          collapsable: true,
          children: [
            "bzhan-10wan",
            "zhihu-1000wan",
            "csdn-1000wan",
            "readme.md",
          ],
        },
      ],
    },
沉默王二's avatar
沉默王二 已提交
540
  ],
541 542 543 544
});