Mapeamento de um Filter no web.xml

Estou com uma dúvida com a questão abaixo:

<filter-mappig> <filter-name>CompressFilter</filter-name> <url-pattern>/*</url-pattern> <dispatcher>FOWARD</dispatcher> <dispatcher>REQUEST</dispatcher> <dispatcher>ERROR</dispatcher> </filter-mapping>

Which of the following statements are true about this filter?

A) CompressFilter filter would be invoked for all the resources of the web application when the client calls them.

B) CompressFilter filter will not be applied for resources invoked using the RequestDispatcher mechanism.

C) CompressFilter filter will be applied to all resources invoked via the RequestDispatcher.forward() method.

D) CompressFilter filter will be applied to all resources invoked via the RequestDispatcher.error() method.

E) CompressFilter filter will be applied to all resources invoked via the RequestDispatcher.request() method.

As alternativas certas são a letra A e C, mas minha dúvida é porque a alternativas D e E estão erradas?

Talvez ele obedeça apenas a primeira tag dispatcher, e como ha tres a primeira que ele achou é quem manda…

Eu to fazendo um simulado mock exam para certificação web IZO - 899 ai fiz essa questão as respostas que o exame de u foi a letra A e C e a minha dúvida é porque as letras D e E estão erradas