Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spring-projects/sts4
The next generation of tooling for Spring Boot, including support for Cloud Foundry manifest files, Concourse CI pipeline definitions, BOSH deployment manifests, and more... - Available for Eclipse, Visual Studio Code, and Theia
https://github.com/spring-projects/sts4
eclipse spring spring-boot sts4 theia visual-studio-code vscode-extension
Last synced: 5 days ago
JSON representation
The next generation of tooling for Spring Boot, including support for Cloud Foundry manifest files, Concourse CI pipeline definitions, BOSH deployment manifests, and more... - Available for Eclipse, Visual Studio Code, and Theia
- Host: GitHub
- URL: https://github.com/spring-projects/sts4
- Owner: spring-projects
- License: epl-1.0
- Created: 2016-08-16T15:04:50.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-01-10T10:33:21.000Z (11 days ago)
- Last Synced: 2025-01-11T15:47:44.054Z (10 days ago)
- Topics: eclipse, spring, spring-boot, sts4, theia, visual-studio-code, vscode-extension
- Language: Java
- Homepage: https://spring.io/tools
- Size: 189 MB
- Stars: 885
- Watchers: 54
- Forks: 208
- Open Issues: 159
-
Metadata Files:
- Readme: README-dev-env.md
- Contributing: CONTRIBUTING.adoc
- License: license.txt
Awesome Lists containing this project
README
# STS4 - Dev Environment Setup
## Running the STS4 Boot Java Language Server locally
Import the headless-services modules into your workspace as existing Maven projects.
Startup the Boot Language Server with:
Main Class: `org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp` (or a corresponding class for other language servers)
Vmargs: `-Dstandalone-startup=true`
This starts up the language server and it listens on port 5007
Use STS or a dedicated instance of VSCode to launch `org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp` in run or debug mode (or another Language Server app)@ Connect local STS4 Boot Java LS to VSCode
You should run the extension from vscode as a 'runtime workbench' with some small changes.
Start by opening the extension for the server you want to work on in vscode:
```
$ cd vscode-extensions/vscode-spring-boot
$ ./build.sh
$ code .
```Open `Main.ts` and change:
```
CONNECT_TO_LS: true
```Save, then launch by pressing `F5`.
This connects the VSCode extension to the locally running language server.
It also uses port 5007## Connect local STS4 Boot Java LS to Eclipse runtime workbench
Startup Eclipse or STS (3). I.e something that support for RCP / plugin development.
Define a recent nightly STS 4 build as your target platform.
Import the projects under `eclipse-language-servers` into your workspace.
Startup a runtime workbench of the Eclipse STS4 distribution
The language server plugin is: org.springframework.tooling.boot.java.ls
Add Vmargs: `-Dboot-java-ls-port=5007`
This lets the Eclipse language server extension connect to the locally running language server on port 5007## Additional Resources:
- Generic editor source code (used by lsp4e as a dependency): https://github.com/eclipse/eclipse.platform.text
Not sure which version of this you should checkout, it probably depends on your version of Eclipse as this is part
of the eclipse platform.
- LSP4E source code: clone gir repo and import: https://git.eclipse.org/r/lsp4e/lsp4e and import the projects into your workspace.
- LSP4J source code: Add the LSP4J-SDK feature to your target platform. We have usually versions from this in our builds:
http://services.typefox.io/open-source/jenkins/job/lsp4j/job/master/lastStableBuild/artifact/build/p2-repository/- There is an update site that contains our latest language servers as extensions for Eclipse:
https://cdn.spring.io/spring-tools/snapshot/TOOLS/sts4-language-server-integrations/nightly
This is being produced by:
https://build.spring.io/browse/IDE-CODE- CI builds of the full STS4 distribution can be downloaded from here:
https://cdn.spring.io/spring-tools/snapshot/STS4/nightly-distributions.html