春季安全 + Spring MVC如何正确集成它们?
我有一个工作项目,两个框架都运行良好,
我的问题是如何构建它。
我设置了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚将用户角色文件夹添加到 WEB-INF 中并使用了重定向...现在它可以工作了。
I just added the user role folders into WEB-INF and used redirect... now it's working.