I'm new to JavaEE and EJBs. I made my first few steps with it but there are quite a few things about the basic annotations, that I don't get, no matter how much time i spend googling and reading E-Books. Maybe someone can help out or refer me to a good explanation.
@Stateful/@Stateless I think I understood the basic concept. But which one is used by default?
@ManagedBean/@Named Is the @Named Annotaion same as @ManagedBean simply with a custom Name?
@Sessionscoped/@Requestscoped Do these interfere with @Stateful/@Stateless? In my understanding it wouldn't make sense to pair @Stateless with @Sessionscoped, because @Stateless beans are in this "Bean-Pool" on the server and are for Single-Method-Invocations and not for enduring tasks. Based on this logic I'd argue that it doesn't make sense to have a @Requestscoped @Stateful bean, because after the initial HTTP-Request your Bean is "disconnected" from the client.
I get my Programs to work, but how can I now if I did it efficient, if I actually have no idea what I'm doing?