Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 376 Bytes

File metadata and controls

16 lines (15 loc) · 376 Bytes

Traitements pré-post-processeurs

@Component("pizzaService")
@Scope("prototype")
public class PizzaServiceImpl implements IPizzaService {
    @PostConstruct
    public void init() {
        // du code exécuté juste après la création du bean
    }
    @PreDestroy
    public void destroy() {
         // du code exécuté avant la destruction du bean
    }
}