Git Product home page Git Product logo

Comments (5)

ljnelson avatar ljnelson commented on June 15, 2024

(Not up to speed on any of the root causes, context, deeper issues, etc. but wanted to add this in case it is helpful.)

In any CDI application, if you put @Inject on a method, it becomes an initializer method with corresponding rules about its invocation by the CDI container. When you mix this with JAX-RS, it can be surprising for sure.

from helidon.

tjquinno avatar tjquinno commented on June 15, 2024

That could well explain what I'm seeing.

So maybe this is simply pilot error on my part in misusing/not understanding the implications of @Inject on methods. (I guess I'm used to seeing other annotations explicitly flagging init methods, like @PostConstruct).

I'll go back to my example and make sure that doing the @Inject on the constructor instead (and only there) works and, if so, I'll probably close this as PEBCAK.

from helidon.

tjquinno avatar tjquinno commented on June 15, 2024

This was definitely due to me misusing @Inject on the resource methods.

The GreetService constructor already has @Inject. I added a @ConfigProperty parameter to the constructor, saved the value in an instance field, and then changed the resource methods to use that and all is well.

from helidon.

ljnelson avatar ljnelson commented on June 15, 2024

Right; I mean the flow will be:

  • {waves hands vaguely} a request comes into the JAX-RS implementation
  • Jersey realizes a given resource has to be instantiated and delegates to the DI system in effect for that instantiation (the DI system is CDI in this case, not, say, HK2)
  • CDI takes over the instantiation and follows its rules. One of those rules is to run initializer methods immediately after invoking the constructor.
  • The resource class is now instantiated and Jersey resumes control and figures out what resource method to invoke, etc. etc.

from helidon.

tjquinno avatar tjquinno commented on June 15, 2024

Yes, that's all consistent with what I saw. The initial invocations of the methods with @Inject--as part of constructing the object--did see the correctly-injected config property. The later calls, responding to a request, did not. That matches up with your description, as does why it works to do the injection in the annotated constructor and store the values in instance fields.

from helidon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.