SóProvas


ID
360022
Banca
FEPESE
Órgão
UDESC
Ano
2010
Provas
Disciplina
Programação
Assuntos

Considere o seguinte conjunto de afirmativas a respeito de enterprise beans, definidos na plataforma Java EE 5:

1. Um applet é um tipo de enterprise bean.
2. Um enterprise bean do tipo session pode implementar um web service.
3. Enterprise beans são componentes executados no servidor.
4. Um enterprise bean do tipo message-driven processa mensagens enviadas por qualquer tipo de componente Java EE.

Assinale a alternativa que indica todas as afirmativas corretas.

Alternativas
Comentários
  • 1 [ ERRADO ] Applet roda em um navegador (client-side).

     

    2 [ CERTO ] Referência:

    A stateless session bean can implement a web service, but a stateful session bean cannot.

    Like stateless session beans, singleton session beans can implement web service endpoints.

    https://docs.oracle.com/javaee/6/tutorial/doc/gipjg.html

     

    3 [ CERTO ] Somente do lado servidor.

     

    4 [ CERTO ] Referência:

    message-driven bean is an enterprise bean that allows Java EE applications to process messages asynchronously. This type of bean normally acts as a JMS message listener, which is similar to an event listener but receives JMS messages instead of events. The messages can be sent by any Java EE component (an application client, another enterprise bean, or a web component) or by a JMS application or system that does not use Java EE technology. Message-driven beans can process JMS messages or other kinds of messages.

    https://docs.oracle.com/javaee/6/tutorial/doc/gipko.html

     

    Gabarito: e)