为网站中的唯一用户生成唯一的 URL

发布于 2024-10-15 05:09:36 字数 254 浏览 1 评论 0原文

我正在开发一个网络应用程序,用户将在其中注册,之后它会为每个用户显示一个仪表板。仪表板对于每个用户来说都是唯一的,它应该类似于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨与橙与城 2024-10-22 05:09:36

我将有一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文