views:

32

answers:

1

I was looking at the Firebug output for my index page and noticed that my /login handler is getting called at some point during the execution of the index page. It doesn't redirect to the /login page though for some reason.

But I can't tell which resource is triggering /login to be called. Is there some way of outputting the source of the call to the handler in Spring 3.0 MVC?

+2  A: 

I would start by turning up the logging and checking out the log on the application\web server.

javamonkey79