은 @Component 주석과 동일한 기능을 가지지만 의미가 다른 세 가지 주석이 있습니다.
1) @Repository: Dao 구현 클래스에 주석이 붙습니다.
2) @Service: Service 구현 클래스에 주석이 붙습니다.
3) @Controller: SpringMVC 프로세서에 주석 달기
Bean 범위:
@Scope("prototype"): 객체 생성 모드를 지정하는 데 사용되며, 싱글톤 모드 또는 프로토타입 모드일 수 있습니다. 기본값은 싱글톤입니다.
기본 유형입니다. 속성 주입 :
@Value
@Autowired: byType 모드의 주석 주입, 즉 유형 기반의 주석 주입
@Qualifier("mySchool"): byName 모드의 주석 주입, 사용 시 @Autowired와 함께 사용해야 합니다. @Qualifier
도메인 속성 어노테이션:
@Resource: name 속성이 없으면 byType 모드에서 어노테이션 주입이지만, 주입된 객체는 하나만 가질 수 있다는 전제
@Resource(name="mySchool"): 어노테이션 주입 byName 모드에서
Bean 생명의 시작과 끝:
@PostConstruct: 현재 Bean 초기화가 방금 완료되었습니다.
@PreDestroy: 현재 Bean이 곧 소멸될 예정입니다.
@Configuration: 현재 클래스가 다음과 같이 작동함을 나타냅니다. Spring 컨테이너, 즉 모든 Bean은 이 클래스에 의해 생성됩니다.
참고:
예제를 제공하기 전에 몇 가지 문제를 선언하겠습니다.
1. 주석은 spring-aop-4.3.9에 따라 달라집니다. RELEASE.jar 패키지이므로 종속성 패키지를 가져와야 합니다.
2. 삽입하려면 주석 방법을 사용하고 구성 파일에는 제약 조건 헤더 파일을 추가해야 합니다.
<?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:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context/spring-context.xsd">
이 헤더 파일은 Spring에서 직접 찾을 수도 있습니다. 문서:
3. SpringJUnit4 테스트를 사용하는 경우 spring-test-4.3.9.RELEASE.jar 패키지도 가져와야 합니다.
1 먼저 학교 클래스를 만듭니다.
package com.ietree.spring.basic.annotation.demo1;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component; @Component("mySchool")public class School { @Value(value = "清华大学")private String name;public School() {super(); }public School(String name) {super();this.name = name; }public void setName(String name) {this.name = name; } @Overridepublic String toString() {return "School [name=" + name + "]"; } }
package com.ietree.spring.basic.annotation.demo1;import javax.annotation.PostConstruct;import javax.annotation.PreDestroy;import javax.annotation.Resource;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;/** * 说明: * 与@Component注解功能相同,但意义不同的注解还有三个: * 1)@Repository:注解在Dao实现类上 * 2)@Service:注解在Service实现类上 * 3)@Controller:注解在SpringMVC的处理器上 * * Bean作用域: * @Scope("prototype"):用于指定对象创建模式,可以是单例模式或者原型模式,默认是singleton * * 基本类型属性注入: * @Value * * @Autowired:byType方式的注解式注入,即根据类型注解 * @Qualifier("mySchool"):byName方式的注解式注入,在使用@Qualifier时必须与@Autowired联合使用 * * 域属性注解: * @Resource:不加name属性则为byType方式的注解式注入,但前提是注入的对象只能有一个 * @Resource(name="mySchool"):byName方式的注解式注入 * * Bean的生命始末: * @PostConstruct:当前Bean初始化刚完毕 * @PreDestroy:当前Bean即将被销毁 *///@Scope("prototype")@Component("myStudent")public class Student { @Value(value = "小明")private String name; @Value(value = "25")private int age; // @Autowired// @Qualifier("mySchool")// @Resource(name="mySchool") @Resourceprivate School school;// 对象属性,也叫做域属性public Student() {super(); } public Student(String name, int age) {super();this.name = name;this.age = age; }public void setName(String name) { System.out.println("执行setName()");this.name = name; }public void setAge(int age) { System.out.println("执行setAge()");this.age = age; }public void setSchool(School school) {this.school = school; } @Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + ", school=" + school + "]"; } @PostConstructpublic void initAfter(){ System.out.println("当前Bean初始化刚完毕"); } @PreDestroypublic void preDestroy(){ System.out.println("当前Bean即将被销毁"); } }
package com.ietree.spring.basic.annotation.demo1;import org.springframework.beans.factory.annotation.Autowire;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;/** * @Configuration:表示当前类充当Spring容器,即所有的Bean将由这个类来创建 */@Configurationpublic class MyJavaConfig { @Bean(name="mySchool")public School mySchoolCreator(){return new School("清华大学"); } // autowire=Autowire.BY_TYPE:指从当前类这个容器中查找与域属性的类型具有is-a关系的Bean// autowire=Autowire.BY_NAME:指从当前类这个容器中查找与域属性同名的Bean@Bean(name="myStudent", autowire=Autowire.BY_TYPE)public Student myStudentCreator(){return new Student("小明", 25); } }
<?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:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context/spring-context.xsd">
package com.ietree.spring.basic.annotation.demo1;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import org.springframework.test.context.ContextConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations="classpath:com/ietree/spring/basic/annotation/demo1/applicationContext.xml")public class MyTest { @Autowiredprivate Student student; @Testpublic void test01() { String resource = "com/ietree/spring/basic/annotation/demo1/applicationContext.xml"; ApplicationContext ctx = new ClassPathXmlApplicationContext(resource); School school = (School) ctx.getBean("mySchool"); System.out.println(school); Student student = (Student) ctx.getBean("myStudent"); System.out.println(student); ((ClassPathXmlApplicationContext)ctx).close(); } public void test02(){ System.out.println(student); } }
위 내용은 Java의 주석 기능에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!