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 was trying to implement this pattern from documentation:
As for mapper itself, it is working fine and dandy. The plugin, however, seems to have problem with finding the annotated class which contains annotated mapping method. Error description is provided:
"Unknown @ Named reference 'TranslationMapper' ".
Reference for "TranslationsToString" is found properly.
@Named("TranslationMapper")
public class TranslationMapper {
@Named("TranslationsToString")
public String resolveTranslatedText(
List<TranslationDto> translations, @Context Language targetLanguage) {
//some fancy logic
}
}
I was trying to implement this pattern from documentation:
As for mapper itself, it is working fine and dandy. The plugin, however, seems to have problem with finding the annotated class which contains annotated mapping method. Error description is provided:
Reference for "TranslationsToString" is found properly.