Spring 配置

文件目录结构

所需要的包从Spring官网下载

 一、创建实体类

创建 Category 类

package com.how2java.pojo;


public class Category {

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	private int id;
	private String name;
}

创建 Product 类

package com.how2java.pojo;

public class Product {

	private int id;
	private String name;
	private Category category;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Category getCategory() {
		return category;
	}

	public void setCategory(Category category) {
		this.category = category;
	}
}

二、创建 applicationContext.xml 配置文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context     
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  
   
    <bean name="c" class="com.how2java.pojo.Category">
        <property name="name" value="category 1" />
    </bean>

    <bean name="p" class="com.how2java.pojo.Product">
        <property name="name" value="product1" />
        <property name="category" ref="c" />
    </bean>
  
</beans>

配置说明:

主要配置是 bean 标签。

以第一个 bean 标签为例:

bean 标签相当于创建了一个类型为实体类的对象:

name : 说明 这个对象的名称是 c,实体类的路径为‘com.how2java.pojo.Category’

这个类的属性 用 property 标签来表示

property 标签中:

name: 表示实体类的属性名 

value: 表示为这个属性赋予一个值

即 为 c 这个对象(类型为 Category)的 name 属性 赋予一个值(category 1)

即 Category c=new Category(); c.name="category 1";

第二个 Bean 标签中 ,用 property 的 ref 属性传递对象,对象名为 c (第一个 Bean 标签)

三、创建测试类 TestSpring

package com.how2java.test;

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

import com.how2java.pojo.Category;
public class TestSpring {

	public static void main(String[] args) {
		// 装载配置文件
		ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationContext.xml" });

		// 获取 name = c 的 bean 标签
		Category c = (Category) context.getBean("c");
		
		// 调用 getName 方法
		System.out.println(c.getName());

        // 获取 name = p 的 bean 标签
		Product p = (Product) context.getBean("p");
		//调用 getName 方法
		System.out.println(p.getName());
		// 调用 getCategory ,此时 p.category = c; 即 p.category.getName() ==> c.getName()
		System.out.println(p.getCategory().getName());

	}	
}

运行结果:

注解方式传递对象(也可达到上述效果)

applicationContext.xml 文件中

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context     
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">
   
 	<context:annotation-config/>
    <bean name="c" class="com.how2java.pojo.Category">
        <property name="name" value="category 1" />
    </bean>
    <bean name="p" class="com.how2java.pojo.Product">
        <property name="name" value="product1" />
    </bean>
  
</beans>

@Autowired

因为 Product 类要用到 Category 类型的对象,所以在其代码上方加上 @Autowired

 或者在setCategory()方法上也可以

@Resource(name="")

此方法的用法和上述一样,不过要给 name 赋值, name 的值为 对象名

 注解配置

1、applicationContext.xml 文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context     
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">
   <context:component-scan base-package="com.how2java.pojo"/>
   
 	
  
</beans>

2、在实体类的上方 加上 @Component("对象名称")

表明此类是 Bean

3、在类中对属性进行赋值

4、以注解方式传递对象

 运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值