Resources
Line markers for classpath resource paths
There are a handful of methods in the Java DSL that accept resource path Strings instead of abstract resources.
This line marker aims to help with the navigation to these classpath resources (with or without having the classpath:
prefix specified).
The icon is displayed only for classpath resources at the moment, and the icon changes according to the reference file’s type.
Clicking the icon opens the referenced file in a new editor tab.

Code folding for classpath and file system resources
In order to minimize having to see the boilerplate instantiation of resources (new ClassPathResource("...")
and new FileSystemResource("...")
), this code folding collapses the instantiation call into a version that would be passed in as the string variant of the resource path.
The folding is disabled by default, and can be enabled in Settings
/ Editor
/ General
/ Code Folding
.
