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.

Using Spring IoC allows to set bean properties exposed via setters:

public class Bean {
    private String value;
    public void setValue(String value) {
        this.value = value;
    }
}

And the bean definition is:

<bean class="Bean">
    <property name="value" value="Hello!">
</bean>

Is there any existing plugins/classes for Spring Framework that allows to directly expose bean fields as properties without defining setters? Something like this with the same bean definition:

public class Bean {
    @Property
    private String value;
}
share|improve this question
I didn't understand what you are trying to do? You want to inject string into the field? – Bozho Oct 4 '10 at 10:46
Not exactly. I want to expose field as a property without writing a setter method. – Vladimir Oct 4 '10 at 10:51
It's a good question, I think. Spring MVC can do direct field injection for MVC command objects, so it's sensible to consider direct field injection for bean properties. However, I don't believe there's any way to do this in Spring. – skaffman Oct 4 '10 at 10:55
setter is necessary i think, why do you need to do this? – Jigar Joshi Oct 4 '10 at 10:55
1  
I just want to replace a bunch of public setters (which are really junk methods) with a plain annotations wherever it is useful. – Vladimir Oct 4 '10 at 11:06

2 Answers

Spring supports annotation-based field injection out of the box for the JSR-250 @Resource annotation. Spring's own @Autowired and JSR 330's @Inject also work.

You just need to add this line to your context.xml:

<context:annotation-config/>

Reference:

share|improve this answer
1  
Those do not work for String values, they only work for injecting Beans. – Nakedible Mar 25 '11 at 8:33

You can:

  • use the @Value annotation and inject a property (using expression language)
  • take a look at Project Lombok, which will let you skip all setters and getters (and more)
share|improve this answer
2  
@Value annotation replaces IoC with Resource Locator. And it requires to define the property value in the java code. And I could not have 2 different instances with different properties. That's why I want only exposure as property. – Vladimir Oct 4 '10 at 11:13
1  
About lombok -- using this project in my case seems to be like a gun on the wheel. – Vladimir Oct 4 '10 at 11:15
Lombok is the way to go. Just annotate your private fields with @Setter and that's it. No runtime dependency, you just need lombok at compile time and the generated .class files will have the setter methods. The only problem is when you want to annotate the method with something like @Required. – Chochos Apr 20 '11 at 15:38

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.