Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

@Reference(“(service.label=TESTCALL)”) Felix SCR annotation error

Avatar

Level 5

am trying to implement an OSGI service which can serve me as ConfigurationFactory the service implementation has just two properties as shown below.

@Property(value="this is service variable property value") static final String MY_SERVICE_VARIABLE = "service.variable"; @Property(description="Label for this MyService") private static final String MY_SERVICE_LABEL = "service.label";

and am retrieving this service configuration data from an OSGI servlet where i am trying to call this service by below code which compiles fine and retrieves data randomly from the multiple service configuration.

@Reference MyService myservice;


But when i wanted to get each configuration data by using the service.label and am calling the service by using below code snippet in my OSGI servlet, while compiling am facing the below Error.

@Reference("(service.label=TESTCALL)") MyService myservice;


cannot find symbol [ERROR] symbol: method value() [ERROR] location: @interface org.apache.felix.scr.annotations.Reference.

1 Accepted Solution

Avatar

Correct answer by
Level 10

Daniel is correct - i went through this and this works: 

public class SimpleServlet extends org.apache.sling.api.servlets.SlingAllMethodsServlet {
     private static final long serialVersionUID = 2598426539166789515L;
        
     @Reference(target = "(mailservice.label=InternetA)")
     MailService mailService;    

We are turning this all into a HELPX Article so all the steps are included. 

View solution in original post

16 Replies

Avatar

Level 2

Hi.

Have you tried

@Reference(target = "(service.label=TESTCALL)")

instead?

@Reference annotation

Regards,

Daniel.

Avatar

Employee

Why are you not setting these properties on the @Component annotation?

Avatar

Level 5

Feike Visser wrote...

Why are you not setting these properties on the @Component annotation?

 

Hi Feike Visser,

  1. @Reference("(service.label=TESTCALL)")
  2. MyService myservice;

This above code snippet i am using in a servlet where i need to create a service reference that is being used to call for retrieving configuration data from OSGI FELIX Factory console, am referring https://cqdump.wordpress.com/2014/08/05/managing-multiple-instances-of-services-osgi-service-factori... this article to create multiple instances of services via OSGI Service Factory. where as with above code its giving compilation error. and without any parameter to @Reference annotation it is compiled.

Is there any way that can help me in achieving  " how to retrieve OSGI multi services data from Service factory " ?

 

Kk

Avatar

Level 10

In your use case - are you setting up multiple service configurations - as opposed to 1 service with 1 configuration. This is an interesting use case. We do not have any examples on this. 

I will go through this too and see if I get the same results. Maybe something needs to be updated. I will post back. 

Avatar

Level 2
        Hi, Kk. As I've said before, you are missing the attribute called "target" in the annotation. @Reference doesn't accept an attribute called "value" (the default one). You must use target = "your LDAP filter to selected a specific service component". It's very straigthforward... Regards, Daniel.

Avatar

Correct answer by
Level 10

Daniel is correct - i went through this and this works: 

public class SimpleServlet extends org.apache.sling.api.servlets.SlingAllMethodsServlet {
     private static final long serialVersionUID = 2598426539166789515L;
        
     @Reference(target = "(mailservice.label=InternetA)")
     MailService mailService;    

We are turning this all into a HELPX Article so all the steps are included. 

Avatar

Level 5

Daniel Henrique Alves Lima wrote...

Hi, Kk. As I've said before, you are missing the attribute called "target" in the annotation. @Reference doesn't accept an attribute called "value" (the default one). You must use target = "your LDAP filter to selected a specific service component". It's very straigthforward... Regards, Daniel.

 

Hi Daniel,

This works, sorry to post back very late.

Regards,

Kkkrish

Avatar

Level 5
Level 5

Hi Kkkrish,

As Daniel mentioned this should work, i have used it in one of my POC learnings, have uploaded the code at my github for your reference.

@Reference(target = "(service.label=TESTCALL)")

~VAr

Avatar

Level 2
No problem, kk. I've done something similar before. It's also possible to dynamically set the target property (making the value used as a LDAP filter configurable), but I'm far away from my computer to send you a running sample. Regards, Daniel.

Avatar

Level 5

Daniel Henrique Alves Lima wrote...

No problem, kk. I've done something similar before. It's also possible to dynamically set the target property (making the value used as a LDAP filter configurable), but I'm far away from my computer to send you a running sample. Regards, Daniel.

 

Thanks Daniel, providing running sample would be great help.

Regards,

Kk

Avatar

Level 10

I have emailed you all the code so you can see it while the article (that uses the code that works  perfectly fine) is written. 

Avatar

Level 2
No problem, kk. I've done something similar before. It's also possible to dynamically set the target property (making the value used as a LDAP filter configurable), but I'm far away from my computer to send you a running sample. Regards, Daniel.

Avatar

Level 5

smacdonald2008 wrote...

I have emailed you all the code so you can see it while the article (that uses the code that works  perfectly fine) is written. 

 

Thanks Scott, It really helps.

Regards,

Kkkrish

Avatar

Level 10

We will have complete article and video out next week - thank you for bringing this Doc Gap to our attention. This is how a great community works! Most of the HELPX content were driven from threads like this. 

I was able to get both configurable services working based on my posted value to the servlet. 

Avatar

Employee

For those new examples can we use the annotations from org.osgi.service.component.annotations?

This is the new way for annotations.