Good afternoon, I am working on creating a Quarkus stand alone application, that uses jars created in spring boot. Can those jars be used without them being migrated to Quarkus beforehand? I am aware that while Quarkus uses CDI, spring uses DI.But using the spring extension,can these spring jars be used directly in the new Quarkus application?Meaning spring beans from the spring boot jar can be injected into the Quarkus application using DI annotations like "Autowired"?
Thanks