Posts | Comments | Email

Posts Tagged java

Backing up Mysql with Java and PHP

mysqldump is an effective tool to backup MySQL databases. In normal cases, it's done trough a command line commando but it can be used programmatically. It's a very easy script and it could be useful. (don't have to log in into console to take a backup, create an auto backup on deployment, ...) I

04.4.2010| PHP, java, tutorials | Wim

No Comments

Devoxx University 2009

Devoxx is one of the largest Java Conferences in Europe. The first 2 days consists of Universitytalks and the other 3 days are conferences. Since I live in Belgium, approximately 30km of Devoxx, and have a great interest in Java, I was able to attend the 2 Universitydays. When I've entered the r

11.17.2009| java | Wim

2 Comments
The lifecycle of a Spring bean

The lifecycle of a Spring bean

In this blogpost, I'll talk and give a few examples of the lifecycle of a bean in a Spring container. The examples are tested with Spring 3.0RC1 but should work with Spring 2.5+ Xml Attributes In this first example, I'll show you how the lifecycle of a bean happens within the xml-configfil

11.12.2009| Featured, java, tutorials | Wim

No Comments
servletconfig vs servletcontext

servletconfig vs servletcontext

In this little blogpost, I'll try to explain the differences between ServletConfig and ServletContext and when you can use them into a Java Web Application. ServletConfigServletContext Access deploy-time servlet parametersAccess web application parameters One per servletOne per web applica

10.15.2009| Featured, java, tutorials | Wim

No Comments
Dependency Injection with Google Guice by example

Dependency Injection with Google Guice by example

In this blogpost, I'll explain Dependency Injection with Google Guice through a lot of examples. Hope you like it. Annotation based DI It's possible in Guice to inject a class with the help of annotations. In this example, I create a mainclass which creates an order. Inside the order there wil

09.29.2009| Featured, java, tutorials | Wim

9 Comments