Only 1 is right..
the url
pattern can either contain a path
or
wildcard check as *.* but not both
so test/*.jsp is invalid
only path should begin with /
so /*.* is also invalid.
Another interesting point is *.* will not match anything.
it will not match a.a or a.b or something like that
but will match a.*, test.*, anything.*
so the extension will be a * and thats not a wildcard character.
Hope i have made things clear.
Amol.