Trunk, Branch, Tag And Related Concepts
Trunk, Branch and Tag concepts are relevant to revision control (or version control) systems. These systems are typically implemented as repositories containing electronic documents, and changes to...
View ArticleIntroduction To Agile Principles
This post is a reminder about Agile principles. It is also an introduction for those who want to learn about it. The Agile principles were initially proposed in 2001 in the Manifesto for Agile Software...
View ArticleIntroduction To Scrum
This post is an introduction to Scrum, one of the Agile methods to drive software application implementation. Reading this post is a prerequisite to this post. Concepts Scrum projects deliver software...
View ArticleIntroduction To Extreme Programming (XP)
This post is an introduction to Extreme Programming (XP), another of the Agile methods for software application implementation. Reading this post is a prerequisite to this post. The underlying...
View ArticleIntroduction To Git Concepts
This post is an introduction/reminder to Git concepts. It aims at facilitating the learning curve for those coming from a Subversion (or other) background. For more details, there is nothing like the...
View ArticleSpring Selenium Tests With Annotations
This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on GitHub in the Spring-Selenium-Test directory. Some...
View ArticleWhat Is JNDI, SPI, CCI, LDAP And JCA?
JNDI stands for Java Naming and Directory Interface. It is an API to providing access to a directory service, that is, a service mapping name (strings) with objects, reference to remote objects or...
View ArticleIntroduction To JavaEE Concepts
This post aims at clarifying acronyms and concepts used in the J2EE paradigm. J2EE stands for Java to Platform, Entreprise Edition. It enables the creation of modular Java applications to be deployed...
View ArticleSpring MVC Form Validation (With Annotations)
This post provides a simple example of a HTML form validation. It is based on the Spring MVC With Annotations example. The code is available on GitHub in the Spring-MVC-Form-Validation directory....
View ArticleSpring JpaRepository Example (In-Memory)
This post describes a simple Spring JpaRepository example using an in memory HSQL database. The code example is available from GitHub in the Spring-JpaRepository directory. It is based on the...
View Article