春季安全 + Spring MVC如何正确集成它们?

发布于 2024-11-08 15:28:14 字数 477 浏览 0 评论 0原文

我有一个工作项目,两个框架都运行良好,

我的问题是如何构建它。

我设置了 3 个角色(管理员、操作员、用户),并为每个角色设置了一个文件夹。就像管理员、用户和操作员中的 thid 一样

WebContent
     |___admin
     |___user
     |___operator
     |___WEB-INF
         |__jsp

,这些角色只是 jsps jsp中都是公共jsp。

这是正确的方法吗? 因为当我创建 viewResolver 时,它只指向 Web-Inf->jsp...所以我无法使我的请求落在这些文件夹上。

我希望能够将 .jsp 放入文件夹中,以便它会自动分配给角色。 但我也希望能够重用 JSP。

我应该为每个文件夹创建另一个视图解析器吗? 它们都应该位于 WEB-INF 文件夹内吗? 最好的(更常用且简单的)方法是什么?

I have a working project with both frameworks doing fine

My problem is how to architect it.

I have set 3 Roles ( Admin, Operator, User), and one folder for each of them. like thid

WebContent
     |___admin
     |___user
     |___operator
     |___WEB-INF
         |__jsp

in admin,user, and operator are those roles only jsps
in jsp are all public jsps.

Is this the right way to do it ?
because when I create my viewResolver it only points to Web-Inf->jsp... So I am having trouble to make my requests land on those folders.

I want to be able to put a .jsp in a folder so it would automatically be assigned to a Role.
But I would like to be able to reuse the JSPs too.

Should I create another view resolver to each of those folders ?
Should they all be inside the WEB-INF folder ?
What is the best (more used and simple) way of doing this ?

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

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

发布评论

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

评论(1

帥小哥 2024-11-15 15:28:14

我刚刚将用户角色文件夹添加到 WEB-INF 中并使用了重定向...现在它可以工作了。

I just added the user role folders into WEB-INF and used redirect... now it's working.

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