First to develop applications with the Spring framework need to setup the environment . Development requirements are-
1. Eclipse.
2.JDK 1.6.0
3.Spring framework 3.0(Click here to download).
Add the spring jar files into CLASSPATH or Eclipse Library.
Now discuss about example-
Create a class Point.java
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<bean class="com.spring.test.Point" id="point">
<property name="x" value="0"></property>
<property name="y" value="10"></property>
</bean>
</beans>
Create a Main class to access the beans using XML DrawApp.java
Now execute the project. it show the values of X and Y.
--> In place of ApplicationContext here can also use BeanFactory.
1. Eclipse.
2.JDK 1.6.0
3.Spring framework 3.0(Click here to download).
Add the spring jar files into CLASSPATH or Eclipse Library.
Now discuss about example-
Create a class Point.java
package com.spring.test;
public class Point {
private int x;
private int y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}
Create a XML file spring.xmlpublic class Point {
private int x;
private int y;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<bean class="com.spring.test.Point" id="point">
<property name="x" value="0"></property>
<property name="y" value="10"></property>
</bean>
</beans>
Create a Main class to access the beans using XML DrawApp.java
package com.spring.test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DrawApp {
public static void main(String[] args)
{
ApplicationContext context=new ClassPathXmlApplicationContext("spring.xml");
Point p= (Point)context.getBean("point");
System.out.print("x is="+p.getX);
System.out.print("y is="+p.gety);
}
}
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DrawApp {
public static void main(String[] args)
{
ApplicationContext context=new ClassPathXmlApplicationContext("spring.xml");
Point p= (Point)context.getBean("point");
System.out.print("x is="+p.getX);
System.out.print("y is="+p.gety);
}
}
Now execute the project. it show the values of X and Y.
--> In place of ApplicationContext here can also use BeanFactory.
For Further Reading,
- Spring Framework - Example to use @Before annotation with args() in AOP
- Spring Framework-Example to use JoinPoint in AOP
- Hibernate Tutorials
- What is difference between id and name of bean?
- What is GIS ?
- What is Cloud Computing and advantage of cloud
- Spring Framework- Initialize values of bean (property tag)
- Spring Framework - MethodReplacer Example in spring
- Spring Framework - Example of Database Connectivity with DataSource
- Spring Framework- Execption handling in AOP
0 comments:
Post a Comment