为网站中的唯一用户生成唯一的 URL
我正在开发一个网络应用程序,用户将在其中注册,之后它会为每个用户显示一个仪表板。仪表板对于每个用户来说都是唯一的,它应该类似于facebook(即,如果用户注册到FB生成唯一的 URL 地址,如 www.facebook.com/'name-of-theuser')。我想在我的网络应用程序上实现相同的功能,这背后的逻辑是什么?我该如何实现?请帮助我。 为此使用的技术是: 前端:HTML 和脚本 服务器端:Servlet 和 JSP
I am developing a web application where users are going to register on it, after that it displays a dashboard for each user.A Dashboard will be unique to the every user,It should be similar to facebook(i.e if user registers to the FB the unique URL address is generated like www.facebook.com/'name-of-theuser'). I want to implement same functionality on my web application ,what is the logic behind this?How do i implement this? Kindly help me.
Technology using for this is: Front-end : HTML and scripts
Server-Side:Servlets and JSP's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将有一个 servlet,其 url 模式为 /users/*
然后对于每个用户我将有 url
/用户/用户
/用户/用户b
/users/userc 等
在 servlet 中,我将检查 HttpServletRequest 的 getContextPath 并根据 contextPath 提供唯一的页面。
I will have a servlet whose url pattern is /users/*
Then for every user I will have urls
/users/usera
/users/userb
/users/userc etc
In the servlet I will check the getContextPath of the HttpServletRequest and serve a unique page based on the contextPath.