You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a ResolutionException on startup when I create a Spring boot application with Spring Initializr with both spring-boot-starter-webflux and spring-boot-starter-web dependencies and I turn the project into a Java module (Project Jigsaw), by adding a module-info.java
Spring Boot provides dependency management and starters for these projects, but the structure of all of these modules is out of our control. You should report the problems to the relevant projects or ask for guidance for those particular cases.
The general advice from the Spring Boot team is to use Java in classpath mode until the ecosystem has caught up.
In this particular instance, the EL dependency issue will be solved in Spring Boot 2.3 with #19550. In the meantime, you can exclude the validation starter (if you don't need it).
Problem
I get a ResolutionException on startup when I create a Spring boot application with Spring Initializr with both spring-boot-starter-webflux and spring-boot-starter-web dependencies and I turn the project into a Java module (Project Jigsaw), by adding a module-info.java
The error:
Cause
When using both spring-boot-starter-webflux and spring-boot-starter-web dependencies, there is a split package: javax.el
This package is present in both jakarta.el-3.0.3.jar and tomcat-embed-el-9.0.30.jar
Versions
Java version: OpenJDK 11.0.4+11 (AdoptOpenJDK Hotspot)
Spring Boot project, from Spring Initializr:
Startup command (from IntelliJ):
The text was updated successfully, but these errors were encountered: