Spring provides support for JSR 330 annotations since Spring 3.0. As spring annotations JSR 330 annotations are also working in the spring bean container. You just need to have the relevant jars in your classpath. …
“application-context” in spring means nothing but it is core component of spring container in spring framework. Ideally we can say “application-context” one of the Spring Container in Spring Framework and other container is “bean-factory”. The …
“Programming for interfaces than implementation” is very popular principle in java programming and design pattern. Here I am going to explain some interested facts about interface in java in term of Spring Framework. Here I …
For solving external libraries dependency problem Maven provides dependency management functionality for adding external libraries dependency to the project by adding some configurations into maven pom.xml file of project and then Maven downloads them for …
Here we are creating simple Maven Example Hello World using command prompt by executing the archetype:generate command of mvn tool.First of all going to any directory of computer machine and open command prompt. Here I …
There are two setting files maven have. These setting files have information about maven local repository, active build profile etc.The settings element in the settings.xml file contains elements used to define values which configure Maven …
Maven Directory Structure Maven has own standard for directory structure to create in a project. So we no need specify any directory on the project level for sources, resources, tests, plugins etc. And also we …