码迷,mamicode.com
首页 > 编程语言 > 详细

SSH框架入门学习之二(spring)

时间:2014-12-17 22:45:15      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   sp   for   java   on   

Spring也是一个开源框架,我在学习Spring的时候,觉得最重要的几点是:IOC(控制反转)、AOP(面向切面)和容器概念。

具体的教程还请大家去看网上的视频,这里贴一个小Demo以供学习。(前提是大家把该导入的jar包都导入了)

1、Student类和Teacher类

public class Student {
	private String name;
	
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
	
	public void sayHello() {
		System.out.println("Hi," + name);
	}
}

import java.util.List;


public class Teacher {
	private List<Student> stuList;
	private String name;
	
	public List<Student> getStuList() {
		return stuList;
	}
	public void setStuList(List<Student> stuList) {
		this.stuList = stuList;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	
	public void myStu() {
		System.out.println(name + " :");
		for(int i = 0; i < stuList.size(); i++)
			System.out.println(stuList.get(i).getName());
	}
}

2、配置文件:applicationContext.xml的配置

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
	<bean id="student_1" class="Student">
		<property name="name" value="小明">
		</property>
	</bean>
	
	<bean id="student_2" class="Student">
		<property name="name" value="小凡">
		</property>
	</bean>
	
	<bean id="teacher" class="Teacher">
		<property name="name" value="崔老师"/>
		<property name="stuList">
			<list>
				<ref bean= "student_1"/>
				<ref bean= "student_2"/>
			</list>
		</property>
	</bean>
</beans>

3、主类:main(直接运行即可)

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


public class main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
		
		Student stu = (Student) ac.getBean("student_1");
		stu.sayHello();
		
		Teacher tec = (Teacher) ac.getBean("teacher");
		tec.myStu();
	}
}


SSH框架入门学习之二(spring)

标签:style   blog   http   ar   io   sp   for   java   on   

原文地址:http://blog.csdn.net/qq297060023/article/details/41987467

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!