VSCode Extension for Spring Initializr
Перейти к файлу
Yan Zhang c10e1fa50b
Use artifactId as basedir. (#75)
2018-09-13 09:59:03 +08:00
.vscode prototype 2017-12-26 11:28:56 +08:00
images update README and gif (#44) 2018-02-02 19:23:37 +08:00
resources update extension icon (#48) 2018-02-09 11:36:00 +08:00
src Use artifactId as basedir. (#75) 2018-09-13 09:59:03 +08:00
.gitignore Add spring-initializr-vsc.gif (#20) 2018-01-17 14:50:31 +08:00
.travis.yml remove recommendation item, add travis ci (#15) 2018-01-16 09:55:49 +08:00
.vscodeignore Add spring-initializr-vsc.gif (#20) 2018-01-17 14:50:31 +08:00
CHANGELOG.md bump version to 0.3.0 2018-05-03 17:54:26 +08:00
LICENSE.txt OSS review (#10) 2018-01-09 15:35:54 +08:00
README.md Update README.md to introduce the feature of editing starters (#74) 2018-09-12 14:22:50 +08:00
package-lock.json Update vscode@1.1.21 in devDependencies to fix vulnerability. 2018-09-06 15:39:38 +08:00
package.json Support to specify packaging type. (#71) 2018-09-08 21:25:07 +08:00
thirdpartynotice.txt allow to select bootVersion and custom service url (#31) 2018-01-29 11:24:51 +08:00
tsconfig.json allow to select bootVersion and custom service url (#31) 2018-01-29 11:24:51 +08:00
tslint.json allow to select bootVersion and custom service url (#31) 2018-01-29 11:24:51 +08:00

README.md

Spring Initializr Java Support

Marketplace Version Installs Rating Gitter

Overview

Spring Initializr is a lightweight extension to quickly generate a Spring Boot project in Visual Studio Code (VS Code). It helps you to customize your projects with configurations and manage Spring Boot dependencies.

Screenshot

Feature List

  • Generate a Maven/Gradle Spring Boot project
  • Customize configurations for a new project (language, group id, artifact id, boot version and dependencies)
  • Search for dependencies
  • Quickstart with last settings
  • Edit Spring Boot dependencies of an existing Spring Boot project

Requirements

  • VS Code (version 1.19.0 or later)
  • JDK (version 1.8.0 or later)

Install

Open VS Code and press F1 or Ctrl + Shift + P to open command palette, select Install Extension and type vscode-spring-initializr.

Or launch VS Code Quick Open (Ctrl + P), paste the following command, and press enter.

ext install vscode-spring-initializr

Use

  • Launch VS Code
  • Press Ctrl + Shift + P to open command palette.
  • Type Spring Initializr to start generating a Maven or Gradle project.
  • Follow the wizard.
  • Right click inside the pom.xml or gradle.build file and choose Edit starters for dependency refactoring.

Configuration

  // Default language.
  "spring.initializr.defaultLanguage": "Java",

  // Default value for Artifact Id.
  "spring.initializr.defaultArtifactId": "demo",

  // Default value for Group Id.
  "spring.initializr.defaultGroupId": "com.example",

  // Spring Initializr Service URL.
  "spring.initializr.serviceUrl": "https://start.spring.io/",

Feedback and Questions

You can find the full list of issues at Issue Tracker. You can submit a bug or feature suggestion, and participate community driven Gitter

License

This extension is licensed under MIT License.

Data/Telemetry

VS Code collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more. If you dont wish to send usage data to Microsoft, you can set the telemetry.enableTelemetry setting to false. Learn more in our FAQ.

Contributing

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.