Tag Archives: scalability

[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

[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

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

[Java] Full-text search with Lucene

Sometimes you have to search large text data in your database. When you use like “%text to find%” SQL expressions database does very slow searches. You can improve it by creating full-text indexes on database’s columns. It may be very … Continue reading

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