What is a Proxy Class?
Proxy is a class in java which is used to create a dynamic class.
Why do we use proxy class?
links
What is a Proxy Class?
Proxy is a class in java which is used to create a dynamic class.
Why do we use proxy class?
links
So let's try to build a web application with a home page .
Let's try to build a restful web service using Spring MVC framework .
The following example will create a web service and list all the products .
Rest Controller :
To be first normalized a database table should not have a duplicate data . Reference for a data should be unique . Lets assume there is a table Customer and another table Customer_Details . Both having columns customer_name and customer_id . In this situation,if we want to change customer_name , it is required to be changed in both the columns of the table , therefore is not first normalized.
If the table is in 1NF then we can check for 2NF.
Hi guys,
This blog is about pass by value and pass by reference concept and understanding. Primitives are always pass by value, objects are always pass by reference.
If only the fields of the parameter are modified in the called method , the changes will be reflected in the calling method . If the reference of the parameter is assigned to a new object , the change will not be reflected in calling method .