Spring mvc 3 Web 应用程序设计

发布于 2024-12-09 02:51:16 字数 252 浏览 0 评论 0原文

在 Spring MVC 应用程序中,我使用一个独特的控制器,用户在其中填充会话信息(我使用 @SessionAttributes("Form") )。

1) It looks that it works fine, but is it the right way to do things ?
2) I would like to share some data between users, how could I do that ?

In a Spring MVC app, I use a unique controller where users populate info of their session (I'm using @SessionAttributes("Form") ).

1) It looks that it works fine, but is it the right way to do things ?
2) I would like to share some data between users, how could I do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

执手闯天涯 2024-12-16 02:51:16
  1. 为什么不呢,你说它适合你,而且简单干净。使用一个控制器是可以的,直到方法的数量不是太多,然后简单地拆分类创建一个新的控制器,尝试对请求映射进行逻辑分组。

  2. 将其保存在数据库中。

  1. why not, you said it works for you, and is simple and clean. Using one controller is fine until the number of methods aren't too many, after that simple split the class creating a new controller, trying to group Request Mappings logically.

  2. save it in a database.

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