Spring IoC container manages beans. Container create or configure these beans through configuration metadata provided by any of 3 ways(XML, Annotation, Java based). These beans are represented as BeanDefinition Object inside container. This BeanDefinition object contains several metadata information on how bean should be created. When ever container get a request to create an Object(Named… Continue reading
Searched for ""
SQL Insert Statement
Here we will learn about Insert statement in SQL(Structure Query Language).
Oracle select statements tutorial for Java Beginners
The select statement comes under DQL(Data Query Language) statement. It is used to fetch data from Database. Data fetched from a table stored in result set. Now we will explore the different options available with select statements.
Oracle Tutorial
Oracle Tutorial for Java beginners to learn basic concepts of Oracle. Here you will find the basics concept of the different type of Oracle Statement and Oracle Views and Oracle Function.
Spring Bean Overview
Spring IoC container can manager more then one beans. Beans are created with details provided via metadata configuration to container(via Java code, Java Annotation, XML). Bean Definitions are represented as the Object of BeanDefinition which contains the several metadata information. Properties those are part of BeanDefinitions are
Spring 3 IoC Container Overview
In this tutorial we will check the overview of Spring IoC Container. Interface org.springframework.context.ApplicationContext represents the Spring IoC container and is responsible for instantiating, configuring, and assembling the beans. But how and from where container gets information like which Object to Instaniate, how to configure and assemble it.
Spring Annotation Tutorial
@Component : It is generic stereotype for any spring managed component. While other stereotypes like @Repository, @Controller, @Service are specialized form of @Component for specific use. Specilized form of stereotypes(e.g. @Controller) should take precedence over @Component as it will have extra benifit of pointcuts, better suited for processing by spring tools. Since Spring 2.5.
JSP Expression
Expression is a type of JSP element which is used to embed Java code in JSP. Container takes the argument of expression (everything written between <%= %>) and put it in as the argument to PrintWriter out which will print on JSP.
Hibernate Framework Basic
What is Hibernate Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.
Oracle Introduction for Java Beginners
Here we will discuss the some key areas of Oracle which will be usefull for Java beginners(Not Oracle Expert). Oracle has Schemas which is nothing but User. Whenever a user has been created a new schema is also created. If it has grant of session then User can login to Oracle.Objects are also there in… Continue reading