Java spring 주해 방식 주입

2478 단어 자바 학습
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.
    
    
    

좋은 웹페이지 즐겨찾기