Java 是否有与 ASP.NET MVC 示例站点等效的站点 - 特别是具有身份验证功能?
我正在尝试开发一个使用表单身份验证的简单网站,但我不想从头开始构建身份验证框架。 ASP.NET MVC 提供了一个很棒的示例网站,内置了身份验证,但我宁愿使用 Java 技术,这样我就可以通过利用开源软件来降低启动成本。 Java(任何框架)有等效的吗?
I'm trying to develop a simple website that employs forms authentication, but I do not want to build the authentication framework from scratch. ASP.NET MVC provides a great sample website with authentication built in, but I would rather use Java technologies so that I can lower start-up cost by utilizing open source software. Does Java (any framework) have an equivalent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于基于 Java 的、干净的、无膨胀的 MVC Web 框架,请查看 Play:
http://www.playframework。 org/
对于身份验证,请查看此链接:
http://www.playframework .org/documentation/1.1/guide8
以上页面是 Play 框架的一部分教程< /a>:
但是,顺便说一句,ASP.NET MVC 是 开源...并且您始终可以选择将其与 Mono(ASP.NET MVC 与之兼容)和 Linux。因此,您可以拥有基于它的完整开源解决方案,而无需学习全新的环境。
For a Java based, clean, bloat-free MVC web framework, take a look at Play:
http://www.playframework.org/
For authentication, take a look at this link:
http://www.playframework.org/documentation/1.1/guide8
The above page is part of the Play framework tutorial:
But, by the way, ASP.NET MVC is open source... And you always have the option of using it with Mono (ASP.NET MVC is compatible with it) and Linux. So you can have a complete open-sourced solution based upon it - and without learning a whole new environment.