|
35 | 35 | "Pivotal.vscode-spring-boot", |
36 | 36 | "vscjava.vscode-spring-initializr", |
37 | 37 | "vscjava.vscode-spring-boot-dashboard" |
38 | | - ] |
| 38 | + ], |
| 39 | + "contributes": { |
| 40 | + "walkthroughs": [ |
| 41 | + { |
| 42 | + "id": "springBootWelcome", |
| 43 | + "title": "Getting Started with Spring Boot in VS Code", |
| 44 | + "description": "An Overview of the Spring Tools in VS Code to get started and to work with existing Spring Boot projects in VS Code", |
| 45 | + "primary": true, |
| 46 | + "steps": [ |
| 47 | + { |
| 48 | + "id": "new-project-using-initializr", |
| 49 | + "title": "Create a new Spring Boot project", |
| 50 | + "description": "The easiest way to create new Spring Boot projects in VS Code is to use the Spring Initializr integration. Open the command palette in VS Code, search for __Spring__ and create a new Spring Boot project from there.\n[Create New Spring Boot Project](command:spring.initializr.maven-project)", |
| 51 | + "media": { |
| 52 | + "image": "walkthroughs/spring-initializr-integration.png", |
| 53 | + "altText": "Create a new Maven-based Spring Boot project" |
| 54 | + } |
| 55 | + }, |
| 56 | + { |
| 57 | + "id": "navigate-your-spring-projects", |
| 58 | + "title": "Navigate your Spring Boot projects", |
| 59 | + "description": "The Spring Tools in your VS Code installation contribute Spring-specific symbols to help you navigate your projects. All the symbols start with `@`.\nYou can navigate to the symbols using the [Outline View](command:outline.focus) of the current file, via the [Go to Symbol in Editor...](command:workbench.action.gotoSymbol) or globally via [Go to symbol in Workspace...](command:workbench.action.showAllSymbols).\nIf you start your search with an `@`, the list of symbols will show the Spring-specific symbols only.", |
| 60 | + "media": { |
| 61 | + "image": "walkthroughs/spring-symbols-navigation.png", |
| 62 | + "altText": "Go to Symbol in Workspace..." |
| 63 | + } |
| 64 | + }, |
| 65 | + { |
| 66 | + "id": "run-your-spring-projects", |
| 67 | + "title": "Run your Spring Boot projects", |
| 68 | + "description": "Running your Spring Boot projects from within VS Code is simple: Open any Java source file from your project and press `Run` at the top right corner.\nThe second option is to [switch to the launch section](command:workbench.view.debug) of VS Code and start the app there.", |
| 69 | + "media": { |
| 70 | + "image": "walkthroughs/spring-run-app.png", |
| 71 | + "altText": "Run your Spring Boot app" |
| 72 | + } |
| 73 | + }, |
| 74 | + { |
| 75 | + "id": "live-information-for-your-running-spring-app", |
| 76 | + "title": "Show live information from your running Spring Boot application", |
| 77 | + "description": "A unique feature of the Spring Tools is the ability to vizualize live data from your running app inplace with the source code of the running application.\n", |
| 78 | + "media": { |
| 79 | + "markdown": "walkthroughs/live-information.md", |
| 80 | + "altText": "Run your Spring Boot app" |
| 81 | + } |
| 82 | + } |
| 83 | + ] |
| 84 | + } |
| 85 | + ] |
| 86 | + } |
39 | 87 | } |
0 commit comments