Alex Boyko
Alex Boyko
Unit test demonstrating an issue upgrading Petclinic to Boot 3. `jakarta.xml.bind-api` dependency should be added explicitly but it's not because `rewrite-maven` dependency resolution thinks that this dependency is present on...
The unit test with trimmed down petclinic is #485 The issue seems to be coming from maven resolution in rewrite as XML Bind dependency somehow ends up as a compile...
Spring petclinic is the famous demo app for Spring. Upgrading this app from 2.x to 3.0.x results in compilation errors due to the missing **jakarta.xml.bind-api** dependency. It used to work....
[org.springframework.boot.test.context.assertj.ApplicationContextAssertProvider.assertThat()](https://docs.spring.io/spring-boot/docs/2.3.x/api/org/springframework/boot/test/context/assertj/ApplicationContextAssertProvider.html#assertThat--) to prevent accidental use. Prefer standard AssertJ assertThat(context)... calls instead. [org.springframework.boot.test.json.JsonContent.assertThat()](https://docs.spring.io/spring-boot/docs/2.3.x/api/deprecated-list.htmlorg/springframework/boot/test/json/JsonContent.html#assertThat--) to prevent accidental use. Prefer standard AssertJ assertThat(context)... calls instead. This is not an obvious search/replace unfortunately. Might...
Java language may have multiple semantic tokens providers simultaneously to provide syntax highlighting for languages embedded inside Java annotations. For example, HQL/JPQL/SQL queries, SPEL expressions etc. Currently VSCode only effectively...
This command i think would be useful for the IDE for the user to select the user defined command for execution. Perhaps it is enough just to implement the JSON...
It'd be useful for IDE integration of Spring CLI to support JSON output option for commands listing projects, catalogs etc. Thus rather than receiving a difficult to parse ASCII table...
Currently if I attempt to remove a project that was brought in by a project catalog it won't be removed from the list of projects. Try: `spring project remove --name...
Currently MySQL grammar is used for semantic tokens and syntax validation for the native queries. However, there are more flavours of SQL available: PostGres, MariaDB, etc (see https://github.com/antlr/grammars-v4/tree/master/sql) Perhaps an...