Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to log URLs that are linking to my site in a Java Servlet.

share|improve this question
Did I understand you correctly that if I found your site in google and opened the link then you logged 'google.com'? – Roman Apr 15 '10 at 21:10
@Roman: correct! – shane Apr 15 '10 at 21:15

3 Answers

up vote 58 down vote accepted

It's available in the HTTP referer header. You can get it in a servlet as follows:

String referrer = request.getHeader("referer"); // Yes, with the legendary misspelling.

You however need to realize that this is a client-controlled value and can thus be spoofed to something entirely different or even removed. Thus, whatever value it returns, you should not use it for any critical business processes in the backend, but only for presentation control (e.g. hiding/showing/changing certain pure layout parts) and/or statistics.

share|improve this answer
thanks for the super quick response! :D – shane Apr 15 '10 at 21:12
You're welcome. – BalusC Apr 15 '10 at 21:19
does it make a difference "referer" & "Referer" ? – ante.sabo Nov 2 '12 at 12:06
3  
@ante: no, the header lookup is case insensitive. – BalusC Nov 2 '12 at 12:10

The URLs are passed in the Request. Request.getRequestURL().

If you mean other sites that are linking to you? You want to capture the HTTP Referrer, which you can do by calling:

request.getHeader("referer");
share|improve this answer

Actually it's: request.getHeader("Referer"), or even better, and to be 100% sure, request.getHeader(HttpHeaders.REFERER), where HttpHeaders is com.google.common.net.HttpHeaders

share|improve this answer
From the Java EE API docs for the method getHeader(String name) (quote): "The header name is case insensitive." – informatik01 May 25 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.