Spring also uses JSR-250-based annotations, which include @PostConstruct, @PreDestroy, and @Resource annotations

Source: Internet
Author: User

@PostConstruct and @PreDestroy notes:

You can use @PostConstruct annotations as an alternative to the initialization callback function, @PreDestroy comment as an alternative to destroying the callback function, as explained in the following example.

Java

 Public classHelloWorld {PrivateString message;  Public voidsetmessage (String message) { This. Message =message; }    PublicString getMessage () {System.out.println ("Your Message:" +message); returnmessage; } @PostConstruct Public voidinit () {System.out.println ("Bean is going through init."); } @PreDestroy Public voiddestroy () {System.out.println ("Bean would destroy now."); }}

Beans.xml

<id= "HelloWorld"  class= " Com.tutorialspoint.autowire.jsr.HelloWorld "><name=" message "  value=" Hello world! " /> </ Bean >  

@Resource notes:

@Resource Note Use a ' name ' property, which is injected as a bean name. You can say that it follows the By-name automatic connection semantics

If a ' name ' is not explicitly specified, the default name is derived from the field name or Setter method.

 Public classTextEditor {Privatespellchecker spellchecker; @Resource (Name= "Spellchecker")    Public voidSetspellchecker (spellchecker spellchecker) { This. Spellchecker =spellchecker; }    Publicspellchecker Getspellchecker () {returnspellchecker; }    Public voidspellcheck () {spellchecker.checkspelling (); }}

Spring also uses JSR-250-based annotations, which include @PostConstruct, @PreDestroy, and @Resource annotations

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.