Java spring注解方式注入

Car.java类

package com;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Component
public class Car {
	@Autowired
	private Engine engine;
	@Autowired
	private Tyre tyre;
	public Engine getEngine() {
		return engine;
	}
	public void setEngine(Engine engine) {
		this.engine = engine;
	}
	public Tyre getTyre() {
		return tyre;
	}
	public void setTyre(Tyre tyre) {
		this.tyre = tyre;
	}
	
	public void drive(){
		engine.fire();
		tyre.roll();
		System.out.println("汽车启动");
	}
	
}

Engine.java类

package com;

import org.springframework.stereotype.Component;

@Component
public class Engine {
	public void fire(){
		System.out.println("引擎点火");
	}
}

Tyre.java类

package com;

import org.springframework.stereotype.Component;

@Component
public class Tyre {
	public void roll(){
		System.out.println("轮胎滚动");
	}
}

applicationContext.xml



	
	
	
	
	
	

Test.java测试类

package cn.com;

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

import com.Car;

public class Test {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		ApplicationContext ac= new ClassPathXmlApplicationContext("applicationContext.xml");
		Car car=(Car)ac.getBean("car");
		car.drive();
	}
}

运行结果:

log4j:WARN No appenders could be found for logger (org.springframework.core.env.StandardEnvironment).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
引擎点火
轮胎滚动
汽车启动

 

你可能感兴趣的:(Java学习)