I have below case.
@Named("a1")
@ApplicationScoped class A{
}
@Specializes
class B extends A{
}
@Specializes
class C extends B{
}
When I'm using EL language in .xhtml page as (a1.orderForm) it is always pointing B class object.
Can somebody tell me what I have done wrong here in order to point the C class object.
It's my bad that Class C is not in the classpath due to maven exclusions while packaging it.