-
I have a Quarkus app using
Just wanted to check if this is a known issue before I create a reproducer... |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 20 replies
-
Beta Was this translation helpful? Give feedback.
-
Hmmm, no, it should work out of the box. Are your mapped POJOs in the Jandex index (i.e. are they part of your main app or if not do you add them to the index)? |
Beta Was this translation helpful? Give feedback.
-
Yes, in fact, in dev mode and tests we are re-generating the Jandex indexes for local projects anyway to make sure they are up-to-date. |
Beta Was this translation helpful? Give feedback.
-
Okay, so just to wrap this up, the solution to my problem is to ensure that the module containing the validated POJOs is properly available to the bean discovery mechanism. A related question about whether Thanks for the help everyone! |
Beta Was this translation helpful? Give feedback.
Okay, so just to wrap this up, the solution to my problem is to ensure that the module containing the validated POJOs is properly available to the bean discovery mechanism.
A related question about whether
quarkuss:dev
should implyprocess-classes
in addition tocompile
remains open. (FWIW, I think it should!)Thanks for the help everyone!