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.

I am using struts2 with spring. In my struts.properties file i have

struts.objectFactory = spring
struts.objectFactory.spring.autoWire = type

I have a class like

public class JdbcDaoSupportMyDao extends JdbcDaoSupport implements myjdbcDao 
{//......
 //......
}

I have an entry in my applicationContext.xml like

<bean id = "jdbcdaobeanentry" class="Spring_Ingrtn.JdbcDaoSupportMyDao">
        <property name="dataSource" ref="dataSource"></property>
</bean>

Now when i am having a setter/getter like

private myjdbcDao jdbcsup; 

public myjdbcDao getJdbcsup() {
  return jdbcsup;
}
public void setJdbcsup(myjdbcDao jdbcsup) {
  this.jdbcsup = jdbcsup;
}

It doesn't work ,it throws a NullPointerException

Why is this so, when i have mapped struts.objectFactory.spring.autoWire = type in my struts.properties file.

Shouldn't it map to my Interface (i.e. ) ?

share|improve this question
i believe this JdbcDaoSupportMyDao part of spring handing DB operation.The s2 part is only responsible for creating S2 specific things like Action instance/interceptors/results type for others part S2 is not in action – Umesh Awasthi Mar 29 '12 at 14:45

1 Answer

change

struts.objectFactory.spring.autoWire = type

to

struts.objectFactory.spring.autoWire = auto

i.e set the auto wire property to auto and let the container decide the best way to decide the wiring policy

share|improve this answer
but shouldn't struts.objectFactory.spring.autoWire = type – Gourav Mar 29 '12 at 16:29
but shouldn't struts.objectFactory.spring.autoWire = type worked,i mean thatz what byType should do....isn't it..??? – Gourav Mar 29 '12 at 16:29

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.