spring-guice
spring-guice copied to clipboard
Tools for using Spring in Guice and Guice in Spring
Migrating from Java 17 to Java 21, I have experienced guice modules compiled with java 21 incompatible with spring-guice:2.0.4 getting the following error during compile time: `Unsupported class file major...
I have a Spring Boot project with Java 17, where I have to add a Maven Dependency which used Guice DI. I cannot change any code in the Library, and...
I would like to use the project to help using spring based libraries in the development of maven plugins. Maven uses a Guice based DI framework (Sisu), hence to use...
### Version Info java:17 spring-boot:3.0.1 spring-framework:6.0.3 spring-guice:2.0.2 native-maven-plugin:0.9.19 ### Description I followed the requirements of the [SpringBoot3 native-image document](https://docs.spring.io/spring-boot/docs/3.0.1/reference/html/native-image.html#native-image.developing-your-first-application.native-build-tools) and made relevant configuration. like this: ```xml org.springframework.boot spring-boot-maven-plugin ${spring-boot.version} ${mainClass}...
Currently the "source" attribute for bindings created by Spring Guice is set to "spring-guice". It would be useful to enhance this to incorporate info from the actual bean definition as...
If a Spring configuration imports a Guice module with `@EnableGuiceModules`, and that module binds a `Provider`, but the Spring configuration is in turn packaged in a `SpringModule`, then the "outer"...
SpringModule filters types that are not visible. However, when this happens, Guice will attempt to construct the type on its own using just in time bindings. This usual leads to...