Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This specific class's member private fields which are annotated @autowired are within a service JAR, and when I am trying to get an instance of the class within my code, the @autowired member is always coming back as null. I have the below component-scan statements within my project's context.xml, which is trying to lookup the base-package within the JAR, but still it appears nulls are being injected into the annotated members. The JAR internally also has a context.xml which has the same component-scan entries as below. The JAR source code cannot be changed now, is there anything I am missing?

<!-- local WEB-INF/spring-context/spring-application-context.xml -->
<context:annotation-config /> 
<context:component-scan base-package="blah.blah" />

//this code within my project
//wjc.getMethod() dereferencing comes back null
 public class A{
    WithinJARInterface wjc = new WithinJARInterfaceImpl()
    List someObject = wjc.getMethod()
 }

 //this code interface within JAR
 public interface WithinJARInterface{
    public List getMethod() throws Exception(); 
 }

 //this code within JAR
 public class WithinJARInterfaceImpl implements WithinJARInterface{

    //below member always comes back NULL
    @Autowired
    private JARService jService;

    public List getMethod(){.....}

 }

 public interface JARService{
    public List method1();
 }

  @Service("JARService") 
   public class JARServiceImpl implments JARService {
     public List method1(){ }
  }
share|improve this question
2  
How do you obtain your object that has null fields annotated with @Autowired? Show the code. – Tomasz Nurkiewicz May 8 '12 at 16:05
I've updated the questions – AKSM May 8 '12 at 16:42
Maybe it is only a typo in the question, but the annotation is @Autowired (uppercase A). -- If this is not a typo in the question, then its likely to be the root of your problem. – Ralph May 8 '12 at 16:46
apologize, typo – AKSM May 8 '12 at 16:48

2 Answers

up vote 6 down vote accepted

You are constructing the WithinJARInterfaceImpl yourself (by calling new)so it isn't managed by spring so the values won't be injected.

share|improve this answer
The spring managed bean fixed it. Thx! I should have posted the question sooner – AKSM May 8 '12 at 20:19

Did you try replacing @Autowired by @Resource? I think @Autowired wires by type while @Resource injects by bean name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.