• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Mapping JSP

 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I know we can map a jsp to servlet. so now my problem is:
i have a jsp A, and B which A includes B.
so for instance:
http://127.0.0.1:8080/myapp/A.jsp

so now i don't want user access to B
http://127.0.0.1:8080/myapp/B.jsp

i want to force everytime user uses the URL
http://127.0.0.1:8080/myapp/B.jsp
it also mean http://127.0.0.1:8080/myapp/A.jsp

thank you !
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
pretty much impossible.

Let's say you managed somehow to map b.jsp to mean "a.jsp". What would happen when a.jsp "includes" b.jsp?

To prevent access to b.jsp, you can place it in WEB-INF. You can <%@ include or <jsp:include files that are in WEB-INF.
 
The moustache of a titan! The ad of a flea:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic