Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
Niveau 1
Niveau 2
Se connecter à la communauté
Connectez-vous pour voir tous les badges
Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
The request failed:
{ "servlet":"org.apache.felix.http.base.internal.dispatch.DispatcherServlet-22bb003a", "message":"Not Found", "url":"/system/console/components/3376.json", "status":"404" }
I'm getting this error for the service I wrote. How to resolve this? Is it because of the code?
Résolu ! Accéder à la solution.
This looks like an issue with custom code with class AssetsReportServiceImpl. Can you add a code snippet for the service annotations that you have used?
//Eg
@Component(service = CustomService.class)
public class CustomServiceImpl implements CustomService
@Reference annotation should be used for a service reference. If any @Reference annotation is not able to pick the correct service, bundle will throw unsatisfied service error. Please check if the highlighted property is properly initialized as a service and is available in the Felix console as a service.
Thanks
Vues
Réponses
Nombre de J’aime
This looks like an issue with custom code with class AssetsReportServiceImpl. Can you add a code snippet for the service annotations that you have used?
//Eg
@Component(service = CustomService.class)
public class CustomServiceImpl implements CustomService
Vues
Réponses
Nombre de J’aime
Seems you are using @Reference annotation on implementation class(com.rrd.dam.core.services.impl.AssetReportExportServiveImpl). Try using interface.
Vues
Réponses
Nombre de J’aime
Vues
Like
Réponses
Vues
Likes
Réponses
Vues
Likes
Réponses