Spring JSR-250 注解



Spring也支持基于JSR-250的注解,包括@PostConstruct、@PreDestroy和@Resource注解。虽然这些注解并非必需,因为你已经有其他替代方案,但让我们简要了解一下它们。

@PostConstruct和@PreDestroy注解

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

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

示例

让我们准备好一个可用的Eclipse IDE,并按照以下步骤创建一个Spring应用程序:

步骤 描述
1 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个com.tutorialspoint包。
2 Spring Hello World 示例章节所述,使用添加外部JAR选项添加所需的Spring库。
3 com.tutorialspoint包下创建Java类HelloWorldMainApp
4 src文件夹下创建Beans配置文件Beans.xml
5 最后一步是创建所有Java文件和Bean配置文件的内容,并运行应用程序,如下所述。

以下是HelloWorld.java文件的内容:

package com.tutorialspoint;
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()方法。这将确保优雅地关闭并调用相关的销毁方法。

package com.tutorialspoint;

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

<?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.tutorialspoint.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注解

您可以将@Resource注解用于字段或setter方法,其作用与Java EE 5中相同。@Resource注解采用'name'属性,该属性将被解释为要注入的Bean名称。可以说,它遵循以下示例中演示的按名称自动装配语义:

package com.tutorialspoint;

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();
   }
}

如果没有显式指定'name',则默认名称将从字段名称或setter方法派生。对于字段,它采用字段名称;对于setter方法,它采用Bean属性名称。

spring_annotation_based_configuration.htm
广告