Until now we’ve seen how CDI can inject bean into other beans that are valuable in the bean archive. The problem is that when we integrate third-party frameworks, their classes are not packaged in bean archives and, therefore, are not discovered by CDI, and can’t be injected.
[Read More]
How to create multi-modules project in Spring
In this article, we will learn how to configure multi-modules project in Spring with the support of Maven build tool. Using this approach makes our code better structure, easily maintain.
[Read More]
How to use JaxB to work with Xml
In this article, we will learn how to use JAXB for working with XML, especially when we utilize JAX-WS framework. Let’s get started.
[Read More]
Some useful shortcut keys in Netbeans
In this article, we will learn about how to use shortcut keys in Netbeans. Let’s get started.
[Read More]
Using frameworks for validation in Java
In this article, we will focus on using frameworks to validate our input parameters of methods in our project.
[Read More]