Hi, has someone tested the correct order of class local interception and lifecycle invocation in the case of inherited beans, like it is specified in 4.2.?
Like:
class A {
@PostConstruct
void initA() {}
}
class B extends A {
@PostConstruct
void initB() {}
}
br, Sven
