Private « Bean « Spring Q&A





1. Private beans?    forum.springsource.org

I am currently wiring several classes together that I would normally make package private and hide behind a facade. It appears that Spring requires these classes and their methods to be ...

2. Public / Private beans    forum.springsource.org

Public / Private beans I know there is currently no support for declaring root beans as public or private. However, I think that kind of ability would be extremely helpful in ...

3. bean using inti-method and private contructor how it works ?    forum.springsource.org

I defined a bean public class ExampleBean { public void init(){ } private ExampleBean(){ } } this works fine for me, ioc calls init method ,but for ...