使用户无法访问网页
我有一个Web应用程序(J2EE+apache+struts2+jsp+jqgrid)和一些JSP(在/webcontent/data_provider文件夹中),jQGrid使用它们从mysql数据库获取数据并填充网格,但我不希望用户访问这些 JSP。 我能做些什么? 先谢谢各位朋友了。
I have a web application(J2EE+apache+struts2+jsp+jqgrid) and some JSPs(in /webcontent/data_provider folder) that jQGrid uses them to fetch data from mysql DB and fill the grid with, but I don't want users to access those JSPs.
What can I do?
Thanks in advance buddies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将这些 JSP 放入
WEB-INF
中,或者创建一个特定 URL 被命中的过滤器,并检查用户是否经过身份验证才能访问它,否则就限制put those JSP into
WEB-INF
or create a filter that particular URL gets hit and check if user is authenticated to access it allow, restrict otherwise