web-dev-qa-db-fra.com

Comment définir un bean Spring à l'aide d'annotations au lieu de XML?

J'ai défini dans un fichier de configuration xml:

<bean id="bootstrap" class="com.package.Bootstrap"></bean>

cela fonctionne bien.

La classe bootsrap:

public class Bootstrap {

   @PostConstruct
   public void onServerStart() {
      System.out.println("PRINTSSSSSSSSSSSSSSSSSSS");
   }
}

La méthode est renvoyée.

Mais comment puis-je me débarrasser de la partie xml et annoter bootstrap pour être un bean à la place?

J'ai

<mvc:annotation-driven />
<context:annotation-config /> 

et

<context:component-scan base-package="com.package" />

Mais je me demandais quelle annotation devrait être utilisée pour remplacer:

<bean id="bootstrap" class="com.package.Bootstrap"></bean>

Je n'ai rien trouvé à ce sujet en ligne et dans les documents du printemps :(

15
momomo

Il y a de la documentation à ce sujet; vous aurez besoin d'une annotation de stéréotype comme @Component.

Annotations de bean stéréotypées

18
Dave Newton

voici un exemple simple que je viens de faire:

Main.Java

package the.test;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;

public class Main {

public static void main(String[] args) {

    AbstractApplicationContext aac = new AnnotationConfigApplicationContext(Person.class, Phones.class);
    Person person = aac.getBean(Person.class);
    System.out.println(person.getPhones().getPhoneOne());
    System.out.println(person.getPhones().getPhoneTwo());
    System.out.println(person.getSurname());
    System.out.println(person.getName());
    System.out.println(person.getAge());
    aac.close();

    }
}


Person.Java

package the.test;

import javax.annotation.Resource;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;

@Configuration

//you may use @ComponentScan("the.test") here and omit declaring 
//"Phone.class" in the main method 

public class Person {
private int age;
private String name;
private String surname;

private Phones phones;

public int getAge() {
    return age;
}
@Value("33")
public void setAge(int age) {
    this.age = age;
}

public String getName() {
    return name;
}

@Value("John")
public void setName(String name) {
    this.name = name;
}

public String getSurname() {
    return surname;
}

@Value("Due")
public void setSurname(String surname) {
    this.surname = surname;
}

public Phones getPhones() {
    return phones;
}
@Resource
public void setPhones(Phones phones) {
    this.phones = phones;
}
}


Phones.Java

package the.test;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;

@Configuration
public class Phones {
private String PhoneOne;
private String PhoneTwo;

public String getPhoneOne() {
    return PhoneOne;
}

@Value("987654321")
public void setPhoneOne(String phoneOne) {
    PhoneOne = phoneOne;
}

public String getPhoneTwo() {
    return PhoneTwo;
}

@Value("123456")
public void setPhoneTwo(String phoneTwo) {
    PhoneTwo = phoneTwo;
}

}

ceci est entièrement basé sur Spring Annotation et est fait sur le framework Spring 4.2.5

j'espère que cela aide.

4
Farzan Skt