How setter works inside Spring Framework?
I'm new in spring Framework. And actually i was doing an experiment with spring actually. Look at this HelloWorld.java : public class HelloWorld { private String messageee; public void setMessage(String messageee){ this.messageee=messageee; } public void show(){ System.out.println("message: "+messageee); } } You see in this program, I've one variable which is outside declared as private named as messageee and next variable which is parametrized with setter named as messageee . You see both have same name. Okay.. Now look at this bean file: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns=