Spring JSR-250 注解

返回 Spring 基于注释的配置


Spring 还支持基于 JSR-250 的注解,包括 @PostConstruct、@PreDestroy 和 @Resource 注解。 虽然这些注解并不是真正需要的,因为已经有其他替代品,但让我们简要了解一下它们。

@PostConstruct 和 @PreDestroy 注解

要定义 bean 的设置和销毁,我们只需使用 init-method 和/或 destroy-method 参数声明 <bean>。 init-method 属性指定了在实例化时立即在 bean 上调用的方法。 类似地,destroy-method 指定了一个在从容器中删除 bean 之前调用的方法。

可以使用 @PostConstruct 注解作为初始化回调的替代,并使用 @PreDestroy 注解作为销毁回调的替代,如下面的示例中所述。

示例

在 com.jiyik 包下创建 Java 类 HelloWorld 和 MainApp。

HelloWorld.java

package com.jiyik;
import javax.annotation.*;

public class HelloWorld {
   private String message;

   public void setMessage(String message){
      this.message  = message;
   }
   public String getMessage(){
      System.out.println("Your Message : " + message);
      return message;
   }
   
   @PostConstruct
   public void init(){
      System.out.println("Bean is going through init.");
   }
   
   @PreDestroy
   public void destroy(){
      System.out.println("Bean will destroy now.");
   }
}

以下是 MainApp.java 文件的内容。 在这里,需要注册一个在 AbstractApplicationContext 类上声明的关闭钩子 registerShutdownHook() 方法。 这将确保正常关闭并调用相关的销毁方法。

MainApp.java

package com.jiyik;

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

public class MainApp {
   public static void main(String[] args) {
      AbstractApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");

      HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
      obj.getMessage();
      context.registerShutdownHook();
   }
}

以下是init和destroy方法所需的配置文件Beans.xml

Beans.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: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/context
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">

   <context:annotation-config/>
   <bean id = "helloWorld" class = "com.jiyik.HelloWorld"
      init-method = "init" destroy-method = "destroy">
      <property name = "message" value = "Hello World!"/>
   </bean>

</beans>

完成源代码和 bean 配置文件后,让我们运行应用程序。 如果应用程序一切正常,这将打印以下消息

Bean is going through init.
Your Message : Hello World!
Bean will destroy now.

@Resource 注解

可以在字段或 setter 方法上使用 @Resource 注解,它的工作方式与 Java EE 5 中的相同。@Resource 注释采用“名称”属性,该属性将被解释为要注入的 bean 名称。 我们可以说,它遵循 bu-name 自动装配语义,如以下示例所示

package com.jiyik;

import javax.annotation.Resource;

public class TextEditor {
   private SpellChecker spellChecker;

   @Resource(name = "spellChecker")
   public void setSpellChecker( SpellChecker spellChecker ){
      this.spellChecker = spellChecker;
   }
   public SpellChecker getSpellChecker(){
      return spellChecker;
   }
   public void spellCheck(){
      spellChecker.checkSpelling();
   }
}

如果没有明确指定“名称”,则默认名称是从字段名称或 setter 方法派生的。 如果是字段,则采用字段名称; 在 setter 方法的情况下,它采用 bean 属性名称。


返回 Spring 基于注释的配置

查看笔记

扫码一下
查看教程更方便