-
Who am I?
23 years old, last year Computer Science student at AGH University of Science and Technology. Interested in Java and distributed systems.
-
Recent Articles
-
Categories
- algorithms (4)
- c++ (4)
- coding (18)
- enterprise edition (9)
- java (13)
- operating systems (6)
- other (2)
- snippets (7)
- standard edition (4)
- unix (5)
- windows (1)
-
Top 8 last month
- [C++] Counting sort: faster than quicksort! (646 views)
- [C++] Radix sort - integers sorting (532 views)
- [Java] Example of Spring IoC (Inversion of Control) - dependency injection (461 views)
- [C++] Convex hull - Graham algorithm (408 views)
- [Java] EclipseLink - getting started (354 views)
- [Java] Spring IoC Container - autowiring (297 views)
- [Java] Unit tests - JUnit vs TestNG (285 views)
- [Java] Full-text search with Lucene (283 views)
Tag Archives: database
[Java] Hibernate + MySQL + UTF-8 how-to
If you wonder how to configure your Hibernate to cooperate with MySQL using UTF-8 character encoding – you are in the right place. The problem you may suffer from: you are using other languages than English in your web application … Continue reading
[Databases] Who does use NoSQL?
I believe that you have heard many things about NoSQL databases, but you wonder if there is any project that uses it? The answer is: YES! There is a growing number of big projects using NoSQL as main data storage … Continue reading
[Java] ORM, EclipseLink and JPA
What is the connection between ORM, EclipseLink and JPA? I hope you have read previous article: EclipseLink – getting started so you have some basics. In this text I want to explain these terms and show you an example – … Continue reading
[Java] EclipseLink – getting started
Still using pure JDBC (Java DataBase Connectivity) drivers? Having hard times while refactoring SQL? You have to try out one of the ORM (Object-Relational Mapping) solutions. Two most-known are Hibernate and EclipseLink. In this article I’ll show you step-by-step how … Continue reading