This package provides:
- definitions@0.1.0
- code-actions@0.1.0
- outline-view@0.1.0
- code-highlight@0.1.0
- find-references@0.1.0
- code-format.range@0.1.0
- autocomplete.provider@2.0.0
This package consumes:
Atom package and Language Server providing support for working with Spring Boot apps.
The extension will automatically activate when you edit files with the following name patterns:
*.java => activates support for Java filesIf you find an issue please raise it here: https://github.com/spring-projects/sts4/issues
Easy navigation to Spring-specific elements of your source code. Open .java file then open Atom's Outline View - View -> Toggle Outline View

Show information from running Spring Boot apps on your machine in the source code. This allows you to run the Spring Boot app locally on your machine and visualizes information from those running apps in your source code.
Once the tooling detects a running Spring Boot app on your local machine, it automatically shows hints in the source code where data from the running app can be inspected. Then hovering over that area (with the mouse pointer), the data from the running app shows up.
If there are multiple instances of the app running on your machine, the live data from all those instances will show up in the hover information.

@Profile: shows information about the active profiles on the running apps@Component, @Bean, @Autowired: shows detailed information about the beans and their wiring from the live app@ContidionalOn...: shows information about the conditions and their evaluation at runtimeRequestMapping: show information about the request mapping for running appsYou can enable/disable this feature via workspace preferences by adding the following:
"boot-java":
"boot-hints":
on: false
Additional code completions for Spring-specific annotations

@Value: code completion for Spring Boot property keys@Scope: code completion for standard scope namesAtom package and Language Server providing support for working with Spring Boot
application.properties and application.yml files.
The package will automatically activate when you edit files with the following name patterns:
application.properties => activates support for Spring Boot properties in .propertiesformat.application.yml => activates support for Spring Boot properties in .yml format.For all other files select grammar to be Spring-Boot-Properties for properties file format or Spring-Boot-Properties-YAML for 'YAML' file format
This package analyzes your project's classpath and parses and indexes any Spring Boot Properties Metadata it finds. Both Maven and Gradle projects are supported.
The data in the index is used to provide validation, code completions and information
hovers while editing Spring Boot Properties in either .properties or .yml format.
Property keys as well as property values are validated. Property keys are validated for being known properties and values are checked for being of expected type as well being a valid value

Both YAML and Properties formats have support for Content Assist on property keys and values helping to write valid Spring Boot configuration files right from the start.


Hovering over property keys provide valuable documentation about the purpose of the property and expected type for its value in a small popup window.

Please report bugs, issues and feature requests on the Github STS4 issue tracker.
Released versions of this package can be installed directly from the Atom package installer.
There are also development snapshots available with the latest fixes and improvements from release git repository: https://github.com/spring-projects/atom-spring-boot
atom-spring-boot foldergit clean -fxd - necessary to delete out of date LS JAR file and dependency packagesgit pull - get the latest changesnpm install - Install latest dependecnies and download proper LS JARapm link . - Link the package to Atom