Tag Archives: inversion of control

[Java] Spring IoC Container – autowiring

The thing I want to introduce you is autowiring in Spring IoC Container. Autowiring is the mechanism that allows developer to write less XML code and moves the responsibility for wiring beans to Spring. I suppose you have read previously … Continue reading

Posted in coding, enterprise edition, java | Tagged , , , , , | Leave a comment

[Java] Example of Spring IoC (Inversion of Control) – dependency injection

Tired of changing your Java code and recompiling project when you want to change objects’ properties? The one possible solution is to create external file keeping all desired data and creating objects by hand. But… Wait a minute, doesn’t Java … Continue reading

Posted in coding, enterprise edition, java | Tagged , , , , , , , , | 1 Comment