Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use Jersey for my REST API. I use JSP files for the views. I put my JSP view files in www/views/.... Now I'd like to forbid access to these views through simple HTTP request on their canonical URL.

What is the best way to forbid direct access to these JSPs from the client ?

share|improve this question

2 Answers

up vote 4 down vote accepted

Stick the JSPs under /WEB-INF in the WAR.

share|improve this answer

As johna has already said, if you put the .jsp files under WEB-INF this will prevent any access to them from the web directly.

If you want finer-grained security controls I would investigate a tool like Spring Security which will let you set up more complex security rules.

share|improve this answer

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.