-
Recent Articles
-
Categories
- algorithms (2)
- c++ (2)
- coding (9)
- enterprise edition (4)
- java (7)
- operating systems (4)
- snippets (4)
- standard edition (3)
- unix (4)
-
Tags
access autowiring cache counting sort database dependency injection design pattern ehcache engine example fast field filesystem full-text fusermount generic gzip implementation inversion of control jdbc linux lucene memcached mounting multitail orm password positioning sorting private quicksort radix sort regexp rsa scalability search singleton sorting spring ioc sql ssh sshfs tail tar tarball xml -
Advertisements
Tag Archives: xml
[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 autowiring, dependency injection, example, inversion of control, spring ioc, xml 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 access, dependency injection, design pattern, example, field, inversion of control, scalability, spring ioc, xml 1 Comment
[Java] Ehcache – cache engine
In modern web applications scalability could be one of things that you have to take under consideration when you plan architecture and use of tools in your project. If you know that your application will be used by hundreds or … Continue reading