config.js 51.4 KB
Newer Older
Miykael_xxm's avatar
Miykael_xxm 已提交
1
// .vuepress/config.js
璃白.'s avatar
璃白. 已提交
2
const path = require("path");
茶陵後's avatar
茶陵後 已提交
3
const host_url = "https://spring.gitcode.net/";
茶陵後's avatar
茶陵後 已提交
4

Miykael_xxm's avatar
seo  
Miykael_xxm 已提交
5
const autometa_options = {
璃白.'s avatar
璃白. 已提交
6 7 8
  site: {
    name: "Spring 中文文档社区"
  },
茶陵後's avatar
茶陵後 已提交
9
  canonical_base: host_url
Miykael_xxm's avatar
seo  
Miykael_xxm 已提交
10 11
};

Miykael_xxm's avatar
Miykael_xxm 已提交
12
module.exports = {
璃白.'s avatar
璃白. 已提交
13
  title: "Spring 中文文档社区",
茶陵後's avatar
茶陵後 已提交
14
  base: "/",
璃白.'s avatar
璃白. 已提交
15 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
  head: [
    [
      "link",
      {
        rel: "icon",
        type: "image/png",
        sizes: "16x16",
        href: `/images/icons/favicon.ico`
      }
    ],
    [
      "link",
      {
        rel: "icon",
        type: "image/png",
        sizes: "48x48",
        href: `/images/icons/icon-48x48.png`
      }
    ],
    [
      "link",
      {
        rel: "icon",
        type: "image/png",
        sizes: "72x72",
        href: `/images/icons/icon-72x72.png`
      }
    ],
    ["link", { rel: "manifest", href: "/manifest.webmanifest" }],
    ["meta", { name: "application-name", content: "Spring 中文文档社区" }],
    [
      "meta",
      { name: "apple-mobile-web-app-title", content: "Spring 中文社区" }
    ],
    [
      "meta",
      { name: "apple-mobile-web-app-status-bar-style", content: "black" }
    ],
    ["link", { rel: "apple-touch-icon", href: `/images/icons/icon_48x48.png` }],
    [
      "link",
      {
        rel: "mask-icon",
        href: "/images/icons/favicon.ico",
        color: "#5dac38"
      }
    ],
    ["meta", { name: "msapplication-TileColor", content: "#5dac38" }],
    ["meta", { name: "theme-color", content: "#5dac38" }],
    [
      "meta",
      { name: "viewport", content: "width=device-width, initial-scale=1" }
    ],
茶陵後's avatar
茶陵後 已提交
68
    ["meta", { "http-equiv": "X-UA-Compatible", content: "IE=edge" }],
茶陵後's avatar
茶陵後 已提交
69
    ["meta", { name: "baidu-site-verification", content: "code-tApgxyb9G8" }],
茶陵後's avatar
茶陵後 已提交
70 71 72 73 74 75 76 77 78
    ['script', {},`
    var _hmt = _hmt || [];
    (function () {
      var hm = document.createElement("script");
      hm.src = "https://hm.baidu.com/hm.js?8eefd6b163dcb3f5762af6b0825e2dd1";
      var s = document.getElementsByTagName("script")[0];
      s.parentNode.insertBefore(hm, s);
    })();
    `]
璃白.'s avatar
璃白. 已提交
79 80
  ],
  locales: {
茶陵後's avatar
茶陵後 已提交
81 82 83 84 85
    '/en/': {
        lang: 'en-US',
        title: 'Spring Docs',
        description: ''
    },
璃白.'s avatar
璃白. 已提交
86 87 88 89 90 91 92
    "/": {
      lang: "zh-CN",
      title: "中文文档",
      description: ""
    }
  },
  plugins: [
茶陵後's avatar
茶陵後 已提交
93 94
    ["autometa", autometa_options],
    ['sitemap', {
茶陵後's avatar
茶陵後 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108
        hostname: host_url,
        // 排除无实际内容的页面
        exclude: ["/404.html"]
      }
    ],
    [
      '@vuepress/last-updated', 
      {
        transformer: (timestamp, lang) => {
          const moment = require('moment')
          moment.locale(lang)
          return moment(timestamp).toString()
        }
      }
茶陵後's avatar
茶陵後 已提交
109
    ]
璃白.'s avatar
璃白. 已提交
110 111 112
  ],
  theme: path.resolve(__dirname, "./themes/theme-gitcode/index.js"),
  themeConfig: {
茶陵後's avatar
茶陵後 已提交
113
    repo: "https://gitcode.net/dev-cloud/spring-docs",
璃白.'s avatar
璃白. 已提交
114
    repoLabel: "GitCode",
茶陵後's avatar
茶陵後 已提交
115
    docsRepo: "https://gitcode.net/dev-cloud/spring-docs/",
璃白.'s avatar
璃白. 已提交
116
    docsDir: "docs",
茶陵後's avatar
茶陵後 已提交
117
    docsBranch: "master",
璃白.'s avatar
璃白. 已提交
118 119 120 121 122 123 124
    editLinks: true,
    editLinkText: "帮助我们改善此页面!",
    lastUpdated: "Last Updated",
    logo: "/images/icons/spring-logo.svg",
    sidebarDepth: 3,
    activeHeaderLinks: true,
    locales: {
茶陵後's avatar
茶陵後 已提交
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 237 238 239 240 241 242 243 244 245 246 247 248 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 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 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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 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 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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
      '/en/': {
          // 多语言下拉菜单的标题
          selectText: 'Language',
          // 该语言在下拉菜单中的标签
          label: 'English',
          lastUpdated: 'Last Updated',
          lang: 'en-US',
          // 编辑链接文字
          editLinkText: 'Edit this page on GitCode',
          algolia: {},
          nav: [
            {
              text: "Spring",
              link: '/en/spring/why-spring.html'
            },
            {
              text: "Spring Boot",
              link: '/en/spring-boot/getting-help.html'
            },
            {
              text: "Spring Framework",
              link: '/en/spring-framework/overview.html'
            },
            {
              text: "Spring Data",
              link: '/en/spring-data/spring-data.html'
            },
            {
              text: "Spring Cloud",
              link: '/en/spring-cloud/documentation-overview.html'
            },
            {
              text: "more",
              ariaLabel: "Others",
              items: [
                { text: 'Spring Cloud Data Flow', link: '/en/spring-cloud-data-flow/spring-cloud-dataflow.html' },
                { text: 'Spring Security', link: '/en/spring-security/overview.html' },
                { text: 'Spring for GraphQL', link: '/en/spring-for-graphql/spring-graphql.html' },
                { text: 'Spring Session', link: '/en/spring-session/_index.html' },
                { text: 'Spring Integration', link: '/en/spring-integration/preface.html' },
                { text: 'Spring HATEOAS', link: '/en/spring-hateoas/spring-hateoas.html' },
                { text: 'Spring REST Docs', link: '/en/spring-rest-docs/spring-restdocs.html' },
                { text: 'Spring Batch', link: '/en/spring-batch/spring-batch-intro.html' },
                { text: 'Spring AMQP', link: '/en/spring-amqp/spring-amqp.html' },
                { text: 'Spring CredHub', link: '/en/spring-credhub/spring-credhub.html' },
                { text: 'Spring Flo', link: '/en/spring-flo/spring-flo.html' },
                { text: 'Spring for Apache Kafka', link: '/en/spring-for-apache-kafka/spring-kafka.html' },
                { text: 'Spring LDAP', link: '/en/spring-ldap/spring-ldap.html' },
                { text: 'Spring Shell', link: '/en/spring-shell/spring-shell.html' },
                { text: 'Spring Statemachine', link: '/en/spring-statemachine/spring-statemachine.html' },
                { text: 'Spring Vault', link: '/en/spring-vault/spring-vault.html' },
                { text: 'Spring Web Flow', link: '/en/spring-web-flow/preface.html' },
                { text: 'Spring Web Services', link: '/en/spring-web-services/spring-web-service.html' }
              ]
            }
              ],
          sidebar: {
              '/en/spring-boot/': [
                  {
                      title: 'Spring Boot',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "getting-help.md",
                          "documentation.md",
                          "getting-started.md",
                          "upgrading.md",
                          "using.md",
                          "features.md",
                          "web.md",
                          "data.md",
                          "io.md",
                          "messaging.md",
                          "container-images.md",
                          "actuator.md",
                          "deployment.md",
                          "cli.md",
                          "build-tool-plugins.md",
                          "howto.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
              ],
              '/en/spring-framework/': [
                  {
                      title: 'Spring Framework',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "overview.md",
                          "core.md",
                          "testing.md",
                          "data-access.md",
                          "web-servlet.md",
                          "web-reactive.md",
                          "integration.md",
                          "languages.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
              ],
              '/en/spring-data/': [
                  {
                      title: 'Spring Data',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "spring-data.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
              ],
              '/en/spring-cloud/': [
                  {
                      title: 'Spring Cloud',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                        "documentation-overview.md",
                        "spring-cloud-build.md",
                        "spring-cloud-bus.md",
                        "spring-cloud-circuitbreaker.md",
                        "spring-cloud-cli.md",
                        "spring-cloud-cloudfoundry.md",
                        "spring-cloud-commons.md",
                        "spring-cloud-config.md",
                        "spring-cloud-consul.md",
                        "spring-cloud-contract.md",
                        "spring-cloud-function.md",
                        "spring-cloud-gateway.md",
                        "spring-cloud-kubernetes.md",
                        "spring-cloud-netflix.md",
                        "spring-cloud-openfeign.md",
                        "spring-cloud-sleuth.md",
                        "spring-cloud-stream.md",
                        "spring-cloud-task.md",
                        "spring-cloud-vault.md",
                        "spring-cloud-zookeeper.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
              ],
              '/en/spring-cloud-data-flow/': [
                  {
                      title: 'Spring Cloud Data Flow',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "spring-cloud-dataflow.md",
                      ],
                      initialOpenGroupIndex: 0
                  }
              ],
              '/en/spring-security/': [
                  {
                      title: 'Spring Security',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                        "overview.md",
                        "prerequisites.md",
                        "community.md",
                        "whats-new.md",
                        "getting-spring-security.md",
                        "features.md",
                        "features-authentication.md",
                        "features-authentication-password-storage.md",
                        "features-exploits.md",
                        "features-exploits-csrf.md",
                        "features-exploits-headers.md",
                        "features-exploits-http.md",
                        "features-integrations.md",
                        "features-integrations-cryptography.md",
                        "features-integrations-data.md",
                        "features-integrations-concurrency.md",
                        "features-integrations-jackson.md",
                        "features-integrations-localization.md",
                        "modules.md",
                        "samples.md",
                        "servlet.md",
                        "servlet-getting-started.md",
                        "servlet-architecture.md",
                        "servlet-authentication.md",
                        "servlet-authentication-architecture.md",
                        "servlet-authentication-passwords.md",
                        "servlet-authentication-passwords-input.md",
                        "servlet-authentication-passwords-form.md",
                        "servlet-authentication-passwords-basic.md",
                        "servlet-authentication-passwords-digest.md",
                        "servlet-authentication-passwords-storage.md",
                        "servlet-authentication-passwords-storage-in-memory.md",
                        "servlet-authentication-passwords-storage-jdbc.md",
                        "servlet-authentication-passwords-storage-user-details.md",
                        "servlet-authentication-passwords-storage-user-details-service.md",
                        "servlet-authentication-passwords-storage-password-encoder.md",
                        "servlet-authentication-passwords-storage-dao-authentication-provider.md",
                        "servlet-authentication-passwords-storage-ldap.md",
                        "servlet-authentication-session-management.md",
                        "servlet-authentication-rememberme.md",
                        "servlet-authentication-openid.md",
                        "servlet-authentication-anonymous.md",
                        "servlet-authentication-preauth.md",
                        "servlet-authentication-jaas.md",
                        "servlet-authentication-cas.md",
                        "servlet-authentication-x509.md",
                        "servlet-authentication-runas.md",
                        "servlet-authentication-logout.md",
                        "servlet-authentication-events.md",
                        "servlet-authorization-.md",
                        "servlet-authorization-architecture.md",
                        "servlet-authorization-authorize-http-requests.md",
                        "servlet-authorization-authorize-requests.md",
                        "servlet-authorization-expression-based.md",
                        "servlet-authorization-secure-objects.md",
                        "servlet-authorization-method-security.md",
                        "servlet-authorization-acls.md",
                        "servlet-oauth2-.md",
                        "servlet-oauth2-login.md",
                        "servlet-oauth2-login-core.md",
                        "servlet-oauth2-login-advanced.md",
                        "servlet-oauth2-client.md",
                        "servlet-oauth2-client-core.md",
                        "servlet-oauth2-client-authorization-grants.md",
                        "servlet-oauth2-client-client-authentication.md",
                        "servlet-oauth2-client-authorized-clients.md",
                        "servlet-oauth2-resource-server.md",
                        "servlet-oauth2-resource-server-jwt.md",
                        "servlet-oauth2-resource-server-opaque-token.md",
                        "servlet-oauth2-resource-server-multitenancy.md",
                        "servlet-oauth2-resource-server-bearer-tokens.md",
                        "servlet-saml2.md",
                        "servlet-saml2-login.md",
                        "servlet-saml2-login-overview.md",
                        "servlet-saml2-login-authentication-requests.md",
                        "servlet-saml2-login-authentication.md",
                        "servlet-saml2-logout.md",
                        "servlet-saml2-metadata.md",
                        "servlet-exploits.md",
                        "servlet-exploits-csrf.md",
                        "servlet-exploits-headers.md",
                        "servlet-exploits-http.md",
                        "servlet-exploits-firewall.md",
                        "servlet-integrations.md",
                        "servlet-integrations-concurrency.md",
                        "servlet-integrations-jackson.md",
                        "servlet-integrations-localization.md",
                        "servlet-integrations-servlet-api.md",
                        "servlet-integrations-data.md",
                        "servlet-integrations-mvc.md",
                        "servlet-integrations-websocket.md",
                        "servlet-integrations-cors.md",
                        "servlet-integrations-jsp-taglibs.md",
                        "servlet-configuration-java.md",
                        "servlet-configuration-kotlin.md",
                        "servlet-configuration-xml-namespace.md",
                        "servlet-test.md",
                        "servlet-test-method.md",
                        "servlet-test-mockmvc.md",
                        "servlet-test-mockmvc-setup.md",
                        "servlet-test-mockmvc-request-post-processors.md",
                        "servlet-test-mockmvc-authentication.md",
                        "servlet-test-mockmvc-csrf.md",
                        "servlet-test-mockmvc-form-login.md",
                        "servlet-test-mockmvc-http-basic.md",
                        "servlet-test-mockmvc-oauth2.md",
                        "servlet-test-mockmvc-logout.md",
                        "servlet-test-mockmvc-request-builders.md",
                        "servlet-test-mockmvc-result-matchers.md",
                        "servlet-test-mockmvc-result-handlers.md",
                        "servlet-appendix.md",
                        "servlet-appendix-database-schema.md",
                        "servlet-appendix-namespace.md",
                        "servlet-appendix-namespace-authentication-manager.md",
                        "servlet-appendix-namespace-http.md",
                        "servlet-appendix-namespace-method-security.md",
                        "servlet-appendix-namespace-ldap.md",
                        "servlet-appendix-namespace-websocket.md",
                        "servlet-appendix-faq.md",
                        "reactive.md",
                        "reactive-getting-started.md",
                        "reactive-authentication-x509.md",
                        "reactive-authentication-logout.md",
                        "reactive-authorization-authorize-http-requests.md",
                        "reactive-authorization-method.md",
                        "reactive-oauth2.md",
                        "reactive-oauth2-login.md",
                        "reactive-oauth2-login-core.md",
                        "reactive-oauth2-login-advanced.md",
                        "reactive-oauth2-client.md",
                        "reactive-oauth2-client-core.md",
                        "reactive-oauth2-client-authorization-grants.md",
                        "reactive-oauth2-client-client-authentication.md",
                        "reactive-oauth2-client-authorized-clients.md",
                        "reactive-oauth2-resource-server.md",
                        "reactive-oauth2-resource-server-jwt.md",
                        "reactive-oauth2-resource-server-opaque-token.md",
                        "reactive-oauth2-resource-server-multitenancy.md",
                        "reactive-oauth2-resource-server-bearer-tokens.md",
                        "reactive-exploits.md",
                        "reactive-exploits-csrf.md",
                        "reactive-exploits-headers.md",
                        "reactive-exploits-http.md",
                        "reactive-integrations-cors.md",
                        "reactive-integrations-rsocket.md",
                        "reactive-test.md",
                        "reactive-test-method.md",
                        "reactive-test-web.md",
                        "reactive-test-web-setup.md",
                        "reactive-test-web-authentication.md",
                        "reactive-test-web-csrf.md",
                        "reactive-test-web-oauth2.md",
                        "reactive-configuration-webflux.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
            ],
            "/en/spring-for-graphql/": [
              {
                title: "Spring For Graphql",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-graphql.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-session/": [
              {
                title: "Spring Session",
                sidebarDepth: 2,
                collapsable: false,
                children: [
                  "_index.md",
                  "whats-new.md",
                  "samples.md",
                  "bootSamples/HttpSession/mongo.md",
                  "bootSamples/HttpSession/jdbc.md",
                  "bootSamples/HttpSession/Redis/boot-redis.md",
                  "bootSamples/boot-findbyusername.md",
                  "bootSamples/boot-websocket.md",
                  "webFlux/boot-webflux-custom-cookie.md",
                  "modules.md",
                  "http-session.md",
                  "web-socket.md",
                  "web-session.md",
                  "spring-security.md",
                  "api.md",
                  "upgrading.md"
                ],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-integration/": [
              {
                title: "Spring Integration",
                sidebarDepth: 2,
                collapsable: false,
                children: [
                  "preface.md",
                  "whats-new.md",
                  "overview.md",
                  "core.md",
                  "message.md",
                  "message-routing.md",
                  "message-transformation.md",
                  "messaging-endpoints.md",
                  "dsl.md",
                  "kotlin-dsl.md",
                  "system-management.md",
                  "reactive-streams.md",
                  "endpoint-summary.md",
                  "amqp.md",
                  "event.md",
                  "feed.md",
                  "file.md",
                  "ftp.md",
                  "gemfire.md",
                  "http.md",
                  "jdbc.md",
                  "jpa.md",
                  "jms.md",
                  "jmx.md",
                  "kafka.md",
                  "mail.md",
                  "mongodb.md",
                  "mqtt.md",
                  "r2dbc.md",
                  "redis.md",
                  "resource.md",
                  "rmi.md",
                  "rsocket.md",
                  "sftp.md",
                  "stomp.md",
                  "stream.md",
                  "syslog.md",
                  "ip.md",
                  "webflux.md",
                  "web-sockets.md",
                  "ws.md",
                  "xml.md",
                  "xmpp.md",
                  "zeromq.md",
                  "zookeeper.md",
                  "error-handling.md",
                  "spel.md",
                  "message-publishing.md",
                  "transactions.md",
                  "security.md",
                  "configuration.md",
                  "testing.md",
                  "samples.md",
                  "resources.md",
                  "history.md"
                ],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-hateoas/": [
              {
                title: "Spring HATEOAS",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-hateoas.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-rest-docs/": [
              {
                title: "Spring REST Docs",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-restdocs.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-batch/": [
              {
                title: "Spring Batch 文档",
                sidebarDepth: 2,
                collapsable: false,
                children: [
                  "spring-batch-intro.md",
                  "whatsnew.md",
                  "domain.md",
                  "job.md",
                  "step.md",
                  "readersAndWriters.md",
                  "processor.md",
                  "scalability.md",
                  "repeat.md",
                  "retry.md",
                  "testing.md",
                  "common-patterns.md",
                  "jsr-352.md",
                  "spring-batch-integration.md",
                  "monitoring-and-metrics.md",
                  "appendix.md",
                  "schema-appendix.md",
                  "transaction-appendix.md",
                  "glossary.md"
                ],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-amqp/": [
              {
                title: "Spring AMQP",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-amqp.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-credhub/": [
              {
                title: "Spring CredHub",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-credhub.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-flo/": [
              {
                title: "Spring Flo",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-flo.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-for-apache-kafka/": [
              {
                title: "Spring for Apache Kafka",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-kafka.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-ldap/": [
              {
                title: "Spring for Apache Kafka",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-ldap.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-shell/": [
              {
                title: "Spring Shell",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-shell.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-statemachine/": [
              {
                title: "Spring Statemachine",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-statemachine.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-vault/": [
              {
                title: "Spring Vault",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-vault.md"],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-web-flow/": [
              {
                title: "Spring Web Flow",
                sidebarDepth: 2,
                collapsable: false,
                children: [
                  "preface.md",
                  "introduction.md",
                  "whatsnew.md",
                  "defining-flows.md",
                  "el.md",
                  "views.md",
                  "actions.md",
                  "flow-managed-persistence.md",
                  "flow-security.md",
                  "flow-inheritance.md",
                  "system-setup.md",
                  "spring-mvc.md",
                  "spring-js.md",
                  "spring-faces.md",
                  "testing.md",
                  "field-mappings.md"
                ],
                initialOpenGroupIndex: 0
              }
            ],
            "/en/spring-web-services/": [
              {
                title: "Spring Web Services",
                sidebarDepth: 2,
                collapsable: false,
                children: ["spring-web-service.md"],
                initialOpenGroupIndex: 0
              }
            ],
璃白.'s avatar
璃白. 已提交
695

茶陵後's avatar
茶陵後 已提交
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
              // fallback
              '/en/spring/':
              [
                  {
                      title: 'INTRO',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "why-spring.md",
                          "introducing-spring-boot.md",
                          "quickstart.md"
                      ],
                      initialOpenGroupIndex: 0
                  },
                  {
                      title: 'GUIDE',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "system-requirements.md",
                          "installing.md",
                          "initializr.md"
                      ],
                      initialOpenGroupIndex: 0
                  },
                  {
                      title: 'IDE',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "vscode_java.md",
                          "intellij_idea.md"
                      ],
                      initialOpenGroupIndex: 0
                  },
                  {
                      title: 'DEMO',
                      sidebarDepth: 2,
                      collapsable: false,
                      children: [
                          "getting-started_first-application.md",
                          "rest-service.md",
                          "consuming-rest.md"
                      ],
                      initialOpenGroupIndex: 0
                  }
              ]
          }
      },
璃白.'s avatar
璃白. 已提交
745 746 747 748 749 750 751 752 753 754 755
      "/": {
        selectText: "选择语言",
        label: "简体中文",
        ariaLabel: "语言",
        lang: "zh-CN",
        editLinkText: "在 GitCode 上编辑此页",
        lastUpdated: "上次更新",
        algolia: {},
        nav: [
          {
            text: "Spring",
茶陵後's avatar
茶陵後 已提交
756
            link: '/why-spring.html'
璃白.'s avatar
璃白. 已提交
757 758 759
          },
          {
            text: "Spring Boot",
茶陵後's avatar
茶陵後 已提交
760
            link: '/spring-boot/getting-help.html'
璃白.'s avatar
璃白. 已提交
761 762 763
          },
          {
            text: "Spring Framework",
茶陵後's avatar
茶陵後 已提交
764
            link: '/spring-framework/overview.html'
璃白.'s avatar
璃白. 已提交
765 766 767
          },
          {
            text: "Spring Data",
茶陵後's avatar
茶陵後 已提交
768
            link: '/spring-data/spring-data.html'
璃白.'s avatar
璃白. 已提交
769 770 771
          },
          {
            text: "Spring Cloud",
茶陵後's avatar
茶陵後 已提交
772
            link: '/spring-cloud/documentation-overview.html'
璃白.'s avatar
璃白. 已提交
773 774 775 776 777
          },
          {
            text: "更多文档",
            ariaLabel: "Others",
            items: [
茶陵後's avatar
茶陵後 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
	            { text: 'Spring Cloud Data Flow', link: '/spring-cloud-data-flow/spring-cloud-dataflow.html' },
	            { text: 'Spring Security', link: '/spring-security/overview.html' },
	            { text: 'Spring for GraphQL', link: '/spring-for-graphql/spring-graphql.html' },
	            { text: 'Spring Session', link: '/spring-session/_index.html' },
	            { text: 'Spring Integration', link: '/spring-integration/preface.html' },
	            { text: 'Spring HATEOAS', link: '/spring-hateoas/spring-hateoas.html' },
	            { text: 'Spring REST Docs', link: '/spring-rest-docs/spring-restdocs.html' },
	            { text: 'Spring Batch', link: '/spring-batch/spring-batch-intro.html' },
	            { text: 'Spring AMQP', link: '/spring-amqp/spring-amqp.html' },
	            { text: 'Spring CredHub', link: '/spring-credhub/spring-credhub.html' },
	            { text: 'Spring Flo', link: '/spring-flo/spring-flo.html' },
	            { text: 'Spring for Apache Kafka', link: '/spring-for-apache-kafka/spring-kafka.html' },
	            { text: 'Spring LDAP', link: '/spring-ldap/spring-ldap.html' },
	            { text: 'Spring Shell', link: '/spring-shell/spring-shell.html' },
	            { text: 'Spring Statemachine', link: '/spring-statemachine/spring-statemachine.html' },
	            { text: 'Spring Vault', link: '/spring-vault/spring-vault.html' },
	            { text: 'Spring Web Flow', link: '/spring-web-flow/preface.html' },
	            { text: 'Spring Web Services', link: '/spring-web-services/spring-web-service.html' }
璃白.'s avatar
璃白. 已提交
796 797 798 799 800 801 802 803 804 805
            ]
          }
        ],
        sidebar: {
          "/spring-boot/": [
            {
              title: "Spring Boot 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
                "getting-help.md",
                "documentation.md",
                "getting-started.md",
                "upgrading.md",
                "using.md",
                "features.md",
                "web.md",
                "data.md",
                "io.md",
                "messaging.md",
                "container-images.md",
                "actuator.md",
                "deployment.md",
                "cli.md",
                "build-tool-plugins.md",
                "howto.md"
璃白.'s avatar
璃白. 已提交
822
              ],
茶陵後's avatar
茶陵後 已提交
823
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
824 825 826 827 828 829 830 831
            }
          ],
          "/spring-framework/": [
            {
              title: "Spring Framework 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
832 833 834 835 836 837 838 839
                "overview.md",
                "core.md",
                "testing.md",
                "data-access.md",
                "web-servlet.md",
                "web-reactive.md",
                "integration.md",
                "languages.md"
璃白.'s avatar
璃白. 已提交
840
              ],
茶陵後's avatar
茶陵後 已提交
841
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
842 843 844 845 846 847 848
            }
          ],
          "/spring-data/": [
            {
              title: "Spring Data 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
849
              children: [
茶陵後's avatar
茶陵後 已提交
850
                "spring-data.md"
茶陵後's avatar
茶陵後 已提交
851
              ],
茶陵後's avatar
茶陵後 已提交
852
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
853 854 855 856 857 858 859 860
            }
          ],
          "/spring-cloud/": [
            {
              title: "Spring Cloud 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
                "documentation-overview.md",
                "spring-cloud-build.md",
                "spring-cloud-bus.md",
                "spring-cloud-circuitbreaker.md",
                "spring-cloud-cli.md",
                "spring-cloud-cloudfoundry.md",
                "spring-cloud-commons.md",
                "spring-cloud-config.md",
                "spring-cloud-consul.md",
                "spring-cloud-contract.md",
                "spring-cloud-function.md",
                "spring-cloud-gateway.md",
                "spring-cloud-kubernetes.md",
                "spring-cloud-netflix.md",
                "spring-cloud-openfeign.md",
                "spring-cloud-sleuth.md",
                "spring-cloud-stream.md",
                "spring-cloud-task.md",
                "spring-cloud-vault.md",
                "spring-cloud-zookeeper.md"
璃白.'s avatar
璃白. 已提交
881
              ],
茶陵後's avatar
茶陵後 已提交
882
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
883 884 885 886 887 888 889
            }
          ],
          "/spring-cloud-data-flow/": [
            {
              title: "Spring Cloud Data Flow 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
890
              children: ["spring-cloud-dataflow.md"],
茶陵後's avatar
茶陵後 已提交
891
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
892 893 894 895 896 897 898 899
            }
          ],
          "/spring-security/": [
            {
              title: "Spring 安全",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
                "overview.md",
                "prerequisites.md",
                "community.md",
                "whats-new.md",
                "getting-spring-security.md",
                "features.md",
                "features-authentication.md",
                "features-authentication-password-storage.md",
                "features-exploits.md",
                "features-exploits-csrf.md",
                "features-exploits-headers.md",
                "features-exploits-http.md",
                "features-integrations.md",
                "features-integrations-cryptography.md",
                "features-integrations-data.md",
                "features-integrations-concurrency.md",
                "features-integrations-jackson.md",
                "features-integrations-localization.md",
                "modules.md",
                "samples.md",
                "servlet.md",
                "servlet-getting-started.md",
                "servlet-architecture.md",
                "servlet-authentication.md",
                "servlet-authentication-architecture.md",
                "servlet-authentication-passwords.md",
                "servlet-authentication-passwords-input.md",
                "servlet-authentication-passwords-form.md",
                "servlet-authentication-passwords-basic.md",
                "servlet-authentication-passwords-digest.md",
                "servlet-authentication-passwords-storage.md",
                "servlet-authentication-passwords-storage-in-memory.md",
                "servlet-authentication-passwords-storage-jdbc.md",
                "servlet-authentication-passwords-storage-user-details.md",
                "servlet-authentication-passwords-storage-user-details-service.md",
                "servlet-authentication-passwords-storage-password-encoder.md",
                "servlet-authentication-passwords-storage-dao-authentication-provider.md",
                "servlet-authentication-passwords-storage-ldap.md",
                "servlet-authentication-session-management.md",
                "servlet-authentication-rememberme.md",
                "servlet-authentication-openid.md",
                "servlet-authentication-anonymous.md",
                "servlet-authentication-preauth.md",
                "servlet-authentication-jaas.md",
                "servlet-authentication-cas.md",
                "servlet-authentication-x509.md",
                "servlet-authentication-runas.md",
                "servlet-authentication-logout.md",
                "servlet-authentication-events.md",
                "servlet-authorization-.md",
                "servlet-authorization-architecture.md",
                "servlet-authorization-authorize-http-requests.md",
                "servlet-authorization-authorize-requests.md",
                "servlet-authorization-expression-based.md",
                "servlet-authorization-secure-objects.md",
                "servlet-authorization-method-security.md",
                "servlet-authorization-acls.md",
                "servlet-oauth2-.md",
                "servlet-oauth2-login.md",
                "servlet-oauth2-login-core.md",
                "servlet-oauth2-login-advanced.md",
                "servlet-oauth2-client.md",
                "servlet-oauth2-client-core.md",
                "servlet-oauth2-client-authorization-grants.md",
                "servlet-oauth2-client-client-authentication.md",
                "servlet-oauth2-client-authorized-clients.md",
                "servlet-oauth2-resource-server.md",
                "servlet-oauth2-resource-server-jwt.md",
                "servlet-oauth2-resource-server-opaque-token.md",
                "servlet-oauth2-resource-server-multitenancy.md",
                "servlet-oauth2-resource-server-bearer-tokens.md",
                "servlet-saml2.md",
                "servlet-saml2-login.md",
                "servlet-saml2-login-overview.md",
                "servlet-saml2-login-authentication-requests.md",
                "servlet-saml2-login-authentication.md",
                "servlet-saml2-logout.md",
                "servlet-saml2-metadata.md",
                "servlet-exploits.md",
                "servlet-exploits-csrf.md",
                "servlet-exploits-headers.md",
                "servlet-exploits-http.md",
                "servlet-exploits-firewall.md",
                "servlet-integrations.md",
                "servlet-integrations-concurrency.md",
                "servlet-integrations-jackson.md",
                "servlet-integrations-localization.md",
                "servlet-integrations-servlet-api.md",
                "servlet-integrations-data.md",
                "servlet-integrations-mvc.md",
                "servlet-integrations-websocket.md",
                "servlet-integrations-cors.md",
                "servlet-integrations-jsp-taglibs.md",
                "servlet-configuration-java.md",
                "servlet-configuration-kotlin.md",
                "servlet-configuration-xml-namespace.md",
                "servlet-test.md",
                "servlet-test-method.md",
                "servlet-test-mockmvc.md",
                "servlet-test-mockmvc-setup.md",
                "servlet-test-mockmvc-request-post-processors.md",
                "servlet-test-mockmvc-authentication.md",
                "servlet-test-mockmvc-csrf.md",
                "servlet-test-mockmvc-form-login.md",
                "servlet-test-mockmvc-http-basic.md",
                "servlet-test-mockmvc-oauth2.md",
                "servlet-test-mockmvc-logout.md",
                "servlet-test-mockmvc-request-builders.md",
                "servlet-test-mockmvc-result-matchers.md",
                "servlet-test-mockmvc-result-handlers.md",
                "servlet-appendix.md",
                "servlet-appendix-database-schema.md",
                "servlet-appendix-namespace.md",
                "servlet-appendix-namespace-authentication-manager.md",
                "servlet-appendix-namespace-http.md",
                "servlet-appendix-namespace-method-security.md",
                "servlet-appendix-namespace-ldap.md",
                "servlet-appendix-namespace-websocket.md",
                "servlet-appendix-faq.md",
                "reactive.md",
                "reactive-getting-started.md",
                "reactive-authentication-x509.md",
                "reactive-authentication-logout.md",
                "reactive-authorization-authorize-http-requests.md",
                "reactive-authorization-method.md",
                "reactive-oauth2.md",
                "reactive-oauth2-login.md",
                "reactive-oauth2-login-core.md",
                "reactive-oauth2-login-advanced.md",
                "reactive-oauth2-client.md",
                "reactive-oauth2-client-core.md",
                "reactive-oauth2-client-authorization-grants.md",
                "reactive-oauth2-client-client-authentication.md",
                "reactive-oauth2-client-authorized-clients.md",
                "reactive-oauth2-resource-server.md",
                "reactive-oauth2-resource-server-jwt.md",
                "reactive-oauth2-resource-server-opaque-token.md",
                "reactive-oauth2-resource-server-multitenancy.md",
                "reactive-oauth2-resource-server-bearer-tokens.md",
                "reactive-exploits.md",
                "reactive-exploits-csrf.md",
                "reactive-exploits-headers.md",
                "reactive-exploits-http.md",
                "reactive-integrations-cors.md",
                "reactive-integrations-rsocket.md",
                "reactive-test.md",
                "reactive-test-method.md",
                "reactive-test-web.md",
                "reactive-test-web-setup.md",
                "reactive-test-web-authentication.md",
                "reactive-test-web-csrf.md",
                "reactive-test-web-oauth2.md",
                "reactive-configuration-webflux.md"
璃白.'s avatar
璃白. 已提交
1053
              ],
茶陵後's avatar
茶陵後 已提交
1054
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1055 1056 1057 1058 1059 1060 1061 1062
            }
          ],

          "/spring-for-graphql/": [
            {
              title: "Spring For Graphql 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1063
              children: ["spring-graphql.md"],
茶陵後's avatar
茶陵後 已提交
1064
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1065 1066 1067 1068 1069 1070 1071 1072
            }
          ],
          "/spring-session/": [
            {
              title: "Spring Session 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
                "_index.md",
                "whats-new.md",
                "samples.md",
                "bootSamples/HttpSession/mongo.md",
                "bootSamples/HttpSession/jdbc.md",
                "bootSamples/HttpSession/Redis/boot-redis.md",
                "bootSamples/boot-findbyusername.md",
                "bootSamples/boot-websocket.md",
                "webFlux/boot-webflux-custom-cookie.md",
                "modules.md",
                "http-session.md",
                "web-socket.md",
                "web-session.md",
                "spring-security.md",
                "api.md",
                "upgrading.md"
璃白.'s avatar
璃白. 已提交
1089
              ],
茶陵後's avatar
茶陵後 已提交
1090
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1091 1092 1093 1094 1095 1096 1097 1098
            }
          ],
          "/spring-integration/": [
            {
              title: "Spring Integration 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
                "preface.md",
                "whats-new.md",
                "overview.md",
                "core.md",
                "message.md",
                "message-routing.md",
                "message-transformation.md",
                "messaging-endpoints.md",
                "dsl.md",
                "kotlin-dsl.md",
                "system-management.md",
                "reactive-streams.md",
                "endpoint-summary.md",
                "amqp.md",
                "event.md",
                "feed.md",
                "file.md",
                "ftp.md",
                "gemfire.md",
                "http.md",
                "jdbc.md",
                "jpa.md",
                "jms.md",
                "jmx.md",
                "kafka.md",
                "mail.md",
                "mongodb.md",
                "mqtt.md",
                "r2dbc.md",
                "redis.md",
                "resource.md",
                "rmi.md",
                "rsocket.md",
                "sftp.md",
                "stomp.md",
                "stream.md",
                "syslog.md",
                "ip.md",
                "webflux.md",
                "web-sockets.md",
                "ws.md",
                "xml.md",
                "xmpp.md",
                "zeromq.md",
                "zookeeper.md",
                "error-handling.md",
                "spel.md",
                "message-publishing.md",
                "transactions.md",
                "security.md",
                "configuration.md",
                "testing.md",
                "samples.md",
                "resources.md",
                "history.md"
璃白.'s avatar
璃白. 已提交
1154
              ],
茶陵後's avatar
茶陵後 已提交
1155
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1156 1157 1158 1159 1160 1161 1162
            }
          ],
          "/spring-hateoas/": [
            {
              title: "Spring HATEOAS 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1163
              children: ["spring-hateoas.md"],
茶陵後's avatar
茶陵後 已提交
1164
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1165 1166 1167 1168 1169 1170 1171
            }
          ],
          "/spring-rest-docs/": [
            {
              title: "Spring HATEOAS 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1172
              children: ["spring-restdocs.md"],
茶陵後's avatar
茶陵後 已提交
1173
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1174 1175 1176
            }
          ],
          "/spring-batch/": [
Miykael_xxm's avatar
Miykael_xxm 已提交
1177
            {
璃白.'s avatar
璃白. 已提交
1178 1179 1180 1181
              title: "Spring Batch 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
                "spring-batch-intro.md",
                "whatsnew.md",
                "domain.md",
                "job.md",
                "step.md",
                "readersAndWriters.md",
                "processor.md",
                "scalability.md",
                "repeat.md",
                "retry.md",
                "testing.md",
                "common-patterns.md",
                "jsr-352.md",
                "spring-batch-integration.md",
                "monitoring-and-metrics.md",
                "appendix.md",
                "schema-appendix.md",
                "transaction-appendix.md",
                "glossary.md"
璃白.'s avatar
璃白. 已提交
1201
              ],
茶陵後's avatar
茶陵後 已提交
1202
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1203 1204 1205 1206 1207 1208 1209
            }
          ],
          "/spring-amqp/": [
            {
              title: "Spring AMQP 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1210
              children: ["spring-amqp.md"],
茶陵後's avatar
茶陵後 已提交
1211
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1212 1213 1214 1215 1216 1217 1218
            }
          ],
          "/spring-credhub/": [
            {
              title: "Spring CredHub 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1219
              children: ["spring-credhub.md"],
茶陵後's avatar
茶陵後 已提交
1220
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1221 1222 1223 1224 1225 1226 1227
            }
          ],
          "/spring-flo/": [
            {
              title: "Spring Flo 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1228
              children: ["spring-flo.md"],
茶陵後's avatar
茶陵後 已提交
1229
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1230 1231 1232 1233 1234 1235 1236
            }
          ],
          "/spring-for-apache-kafka/": [
            {
              title: "Spring for Apache Kafka 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1237
              children: ["spring-kafka.md"],
茶陵後's avatar
茶陵後 已提交
1238
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1239 1240 1241 1242 1243 1244 1245
            }
          ],
          "/spring-ldap/": [
            {
              title: "Spring for Apache Kafka 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1246
              children: ["spring-ldap.md"],
茶陵後's avatar
茶陵後 已提交
1247
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1248 1249 1250 1251 1252 1253 1254
            }
          ],
          "/spring-shell/": [
            {
              title: "Spring Shell 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1255
              children: ["spring-shell.md"],
茶陵後's avatar
茶陵後 已提交
1256
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1257 1258 1259 1260 1261 1262 1263
            }
          ],
          "/spring-statemachine/": [
            {
              title: "Spring Statemachine 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1264
              children: ["spring-statemachine.md"],
茶陵後's avatar
茶陵後 已提交
1265
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1266 1267 1268 1269 1270 1271 1272
            }
          ],
          "/spring-vault/": [
            {
              title: "Spring Vault 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1273
              children: ["spring-vault.md"],
茶陵後's avatar
茶陵後 已提交
1274
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1275 1276 1277 1278 1279 1280 1281 1282
            }
          ],
          "/spring-web-flow/": [
            {
              title: "Spring Web Flow 文档",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
                "preface.md",
                "introduction.md",
                "whatsnew.md",
                "defining-flows.md",
                "el.md",
                "views.md",
                "actions.md",
                "flow-managed-persistence.md",
                "flow-security.md",
                "flow-inheritance.md",
                "system-setup.md",
                "spring-mvc.md",
                "spring-js.md",
                "spring-faces.md",
                "testing.md",
                "field-mappings.md"
璃白.'s avatar
璃白. 已提交
1299
              ],
茶陵後's avatar
茶陵後 已提交
1300
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1301 1302 1303 1304 1305 1306 1307
            }
          ],
          "/spring-web-services/": [
            {
              title: "Spring Web Services 文档",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1308
              children: ["spring-web-service.md"],
茶陵後's avatar
茶陵後 已提交
1309
              initialOpenGroupIndex: 0
璃白.'s avatar
璃白. 已提交
1310 1311 1312
            }
          ],
          // fallback
茶陵後's avatar
茶陵後 已提交
1313
          "/": [
璃白.'s avatar
璃白. 已提交
1314 1315 1316 1317 1318 1319
            {
              title: "Spring 文档", // 必要的
              // path: '/', // 可选的, 标题的跳转链接,应为绝对路径且必须存在
              collapsable: false, // 可选的, 默认值是 true,
              sidebarDepth: 1, // 可选的, 默认值是 1
              children: [""]
Miykael_xxm's avatar
Miykael_xxm 已提交
1320 1321
            },
            {
璃白.'s avatar
璃白. 已提交
1322 1323 1324 1325
              title: "介绍",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1326 1327 1328
                "why-spring.md",
                "introducing-spring-boot.md",
                "quickstart.md"
璃白.'s avatar
璃白. 已提交
1329
              ],
茶陵後's avatar
茶陵後 已提交
1330
              initialOpenGroupIndex: 0
Miykael_xxm's avatar
Miykael_xxm 已提交
1331 1332
            },
            {
璃白.'s avatar
璃白. 已提交
1333 1334 1335 1336
              title: "教程",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1337 1338 1339
                "system-requirements.md",
                "installing.md",
                "initializr.md"
璃白.'s avatar
璃白. 已提交
1340
              ],
茶陵後's avatar
茶陵後 已提交
1341
              initialOpenGroupIndex: 0
Miykael_xxm's avatar
Miykael_xxm 已提交
1342 1343
            },
            {
璃白.'s avatar
璃白. 已提交
1344 1345 1346
              title: "编辑器",
              sidebarDepth: 2,
              collapsable: false,
茶陵後's avatar
茶陵後 已提交
1347
              children: [
茶陵後's avatar
茶陵後 已提交
1348 1349
                "vscode_java.md",
                "intellij_idea.md"
茶陵後's avatar
茶陵後 已提交
1350
              ],
茶陵後's avatar
茶陵後 已提交
1351
              initialOpenGroupIndex: 0
Miykael_xxm's avatar
Miykael_xxm 已提交
1352
            },
璃白.'s avatar
璃白. 已提交
1353 1354 1355 1356 1357
            {
              title: "代码案例",
              sidebarDepth: 2,
              collapsable: false,
              children: [
茶陵後's avatar
茶陵後 已提交
1358 1359 1360
                "getting-started_first-application.md",
                "rest-service.md",
                "consuming-rest.md"
璃白.'s avatar
璃白. 已提交
1361
              ],
茶陵後's avatar
茶陵後 已提交
1362
              initialOpenGroupIndex: 0
Miykael_xxm's avatar
Miykael_xxm 已提交
1363
            }
璃白.'s avatar
璃白. 已提交
1364
          ]
Miykael_xxm's avatar
Miykael_xxm 已提交
1365
        }
璃白.'s avatar
璃白. 已提交
1366
      }
Miykael_xxm's avatar
Miykael_xxm 已提交
1367
    }
璃白.'s avatar
璃白. 已提交
1368 1369
  }
};