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://spring.io/tools
Eclipse Public License 1.0
882 stars 206 forks source link

auto completion doesn't show up for property names #1418

Open martinlippert opened 1 day ago

martinlippert commented 1 day ago
@ConditionalOnProperty(prefix = "server.http2", name = <*>)

does not show up content-assist for the corresponding property keys.

@ConditionalOnProperty(prefix = "server.http2", name = "<*>")

works as expected.

martinlippert commented 1 day ago
@ConditionalOnProperty(name = , prefix = <*>)
@ConditionalOnProperty(name = , prefix = "<*>")

also does not show up content-assist. This works:

@ConditionalOnProperty(name = <*>, prefix = )
martinlippert commented 18 hours ago

Related JDT issue: https://github.com/eclipse-jdt/eclipse.jdt.core/issues/3260 (for the issue mentioned on top of the issue report)

Related JDT issue around the additional comment: https://github.com/eclipse-jdt/eclipse.jdt.core/issues/3155 (most likely related, so need to wait for the new JDT version to arrive on Maven Central in order to update to that version and continue from there)