是否有要管理的模式:分类法+搜索(Lucene)+允许
我想开发自己的网站管理。 这是我的问题,我想使用这些技术:
* 搜索:LUCENE/SOLR
* 用户权限:ACEGI (SPRING SECURITY)
* 分类法(如果有这方面的技术,我不知道)
所以我没有这些技术的经验。我想知道是否有人了解我的情况来帮助我...我认为这些元素之间存在逻辑一致性,但我不知道为什么...我是否需要开发这些功能,就好像它们是完全独立的一样?
I want to develop my own website administration.
Here is my problem, I want to use these technologies :
* search : LUCENE/SOLR
* users' permission : ACEGI (SPRING SECURITY)
* taxonomy (I do not not if there is technologies for this)
So I do not have experience in these technologies. I would like to know if somebody understand my situation in order to help me...I think there is a logical coherence between theses elements but I do not why...Do I need to develop these functionalities as if they were totally independant ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在使用 Grails 构建网站方面取得了一些成功。 Grails 是 Java 世界中的 Rails 框架,构建在 Spring、Hibernate 和 Groovy 之上。它还可以与现有 Java 代码顺利交互,因为它在同一虚拟机中运行,并且基本上是 Java。此外,Grails 还拥有丰富的插件集合,包括用于搜索 和 身份验证/安全。我不确定您指的是哪种分类法,但这可能是您可以使用 Grails 域类进行建模的东西。
I've had some success in building web sites using Grails. Grails is the Java-world equivalent to the Rails framework, and is built on top of Spring, Hibernate, and Groovy. It also interfaces smoothly with existing Java code, because it runs in the same virtual machine and is, basically, Java. In addition, Grails has a rich collection of plugins, including ones for search and authentication/security. I am not sure what taxonomy you're referring to, but that may be something you can model using Grails Domain classes.