4

The @WebServlet annotation has also this keys:

displayName, smallIcon, largeIcon, description

but after setting these attributes where can I get or see them?

skaffman
  • 398,947
  • 96
  • 818
  • 769
xdevel2000
  • 20,780
  • 41
  • 129
  • 196
  • What about key `urlPatterns`? E. g. `urlPatterns={"/MyServlet"}` will make servlet available at http[s]://yourhost[:port]/[appContext]/MyServlet – ninja Apr 28 '11 at 08:42

1 Answers1

5

These properties can be used by the servlet container's administration tools but containers are free to just ignore them.

These properties mirror entries in the web.xml. See the relevant schemas for documentation.

McDowell
  • 107,573
  • 31
  • 204
  • 267